browser-milje/manifest.json

24 lines
597 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-08-13 08:52:21 +00:00
"action": {
"default_popup": "popup.html",
"default_icon": "assets/browser-milje.png"
},
"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:///"],
"js": ["scripts/milje.js"]
}
]
}