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

{
"manifest_version": 2,
"name": "Lunk",
"version": "1.0.0",
"description": "An extension to open specified links in local programs",
"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"
}
}