browser-milje/manifest.json

32 lines
833 B
JSON
Raw Normal View History

2024-08-13 08:52:21 +00:00
{
"manifest_version": 3,
"name": "browser-milje",
"description": "adds a milje table cloth on top of your browser viewport",
"version": "0.0.2",
2024-11-04 22:42:55 +00:00
"permissions": ["storage", "activeTab", "scripting"],
2024-08-13 08:52:21 +00:00
"action": {
"default_popup": "popup.html",
"default_icon": "assets/browser-milje.png"
},
2024-11-04 22:42:55 +00:00
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
2024-08-13 14:18:59 +00:00
"48": "assets/icon-64.png",
"128": "assets/icon-128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>", "file:///"],
2024-11-04 22:42:55 +00:00
"js": ["scripts/milje.js", "scripts/contentScript.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": ""
}
}
}