unshorten/extension/src/manifest.json

23 lines
313 B
JSON
Raw Normal View History

2024-04-13 22:41:22 +00:00
{
"manifest_version": 2,
2024-04-14 01:09:46 +00:00
"name": "Unshortener",
"version": "0.2",
2024-04-13 22:41:22 +00:00
"description": "Unshorten links from Twitter.",
"icons": {
2024-04-13 22:53:58 +00:00
"48": "icons/unshorten.png"
2024-04-13 22:41:22 +00:00
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"contextMenus"
]
}