internet_mapper_viewer/browser/manifest.json

20 lines
486 B
JSON
Raw Permalink Normal View History

{
"manifest_version": 2,
"name": "Viewer",
"version": "0.1",
"description": "Adds a red border to all webpages matching mozilla.org.",
"permissions": [
2024-12-13 20:16:24 +00:00
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
2024-12-13 20:16:24 +00:00
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Click me!",
"default_popup": "popup/popup.html"
}
}