unshorten/extension/src/manifest.json

23 lines
311 B
JSON
Raw Normal View History

2024-04-13 22:41:22 +00:00
{
"manifest_version": 2,
"name": "Unshorten",
"version": "0.1",
"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"
]
}