unshorten/extension/src/manifest.json
2024-04-13 21:49:50 -04:00

25 lines
352 B
JSON

{
"manifest_version": 2,
"name": "Unshortener",
"version": "0.2",
"description": "Unshorten links from Twitter.",
"icons": {
"48": "icons/unshorten.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus"
]
}