ora/manifest.json

39 lines
850 B
JSON
Raw Normal View History

2020-09-17 14:27:08 +02:00
{
"manifest_version": 2,
"name": "Borderify",
"version": "1.0",
"description": "Adds a red border to all webpages matching mozilla.org.",
"icons": {
"512": "icons/timer.png"
},
2020-09-18 21:00:59 +02:00
"browser_action": {
"default_icon": {
"512": "icons/stopwatch-inv.svg"
},
"default_title": "Ora Dash",
"theme_icons": [
{
"light": "./icons/stopwatch-inv.svg",
"dark": "./icons/stopwatch.svg",
"size": 512
}
]
},
2020-09-17 14:27:08 +02:00
"permissions": ["<all_urls>", "tabs", "unlimitedStorage", "storage"],
"background": {
"scripts": ["./src/background/index.js"]
},
2020-09-18 21:00:59 +02:00
"options_ui": {
"page": "./src/options/index.html"
},
2020-09-17 14:27:08 +02:00
"content_scripts": [
{
"matches": ["<all_urls>"],
2020-09-18 21:01:26 +02:00
"js": []
2020-09-17 14:27:08 +02:00
}
2020-09-18 21:00:59 +02:00
],
"web_accessible_resources": ["./icons/stopwatch.svg", "./icons/stopwatch-inv.svg"]
2020-09-17 14:27:08 +02:00
}