This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
lunk/chrome-extension/manifest.json

23 lines
443 B
JSON
Raw Normal View History

2021-06-11 00:47:16 +02:00
{
"manifest_version": 2,
2021-06-16 14:48:44 +02:00
"name": "Lunk",
2021-06-11 00:47:16 +02:00
"version": "1.0.0",
2021-06-16 14:48:44 +02:00
"description": "An extension to open specified links in local programs",
2021-06-11 00:47:16 +02:00
"icons": {},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"browser_action": {
"default_icon": "graphics/icon.png",
"default_popup": "popup/popup.html"
}
}