ora/manifest.json

38 lines
903 B
JSON
Raw Normal View History

2020-09-17 14:27:08 +02:00
{
"manifest_version": 2,
2020-09-19 01:16:43 +02:00
"name": "Ora",
2022-04-19 14:45:06 +02:00
"version": "0.8.2",
2020-10-08 21:25:28 +02:00
"description": "See how much time you spend on each website and set limits",
2020-09-17 14:27:08 +02:00
"icons": {
2020-10-12 00:11:23 +02:00
"512": "icons/watch.png"
2020-09-17 14:27:08 +02:00
},
2020-09-18 21:00:59 +02:00
"browser_action": {
"default_icon": {
2020-10-12 00:11:23 +02:00
"512": "icons/watch.png"
2020-09-18 21:00:59 +02:00
},
2020-09-19 01:16:43 +02:00
"default_title": "Ora Dashboard",
2020-09-18 21:00:59 +02:00
"theme_icons": [
{
2020-10-12 00:11:23 +02:00
"light": "./icons/watch.png",
"dark": "./icons/watch-alt.png",
2020-09-18 21:00:59 +02:00
"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": {
2021-11-23 14:49:38 +01:00
"page": "./src/dashboard/index.html#/options?nav=false"
2020-09-18 21:00:59 +02:00
},
2020-09-17 14:27:08 +02:00
"content_scripts": [
{
"matches": ["<all_urls>"],
2021-11-23 14:12:38 +01:00
"js": ["./src/client/index.js"]
2020-09-17 14:27:08 +02:00
}
2020-09-18 21:00:59 +02:00
],
2021-11-22 01:36:26 +01:00
"web_accessible_resources": ["./icons/watch.png", "./icons/watch-alt.png", "./src/dashboard/index.html"]
2020-09-17 14:27:08 +02:00
}