ora/manifest.json

38 lines
850 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",
2021-01-04 14:27:43 +01:00
"version": "0.7",
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": {
"page": "./src/options/index.html"
},
2020-09-17 14:27:08 +02:00
"content_scripts": [
{
"matches": ["<all_urls>"],
2020-09-20 22:24:57 +02:00
"js": ["./src/client/index.js"]
2020-09-17 14:27:08 +02:00
}
2020-09-18 21:00:59 +02:00
],
2020-10-12 01:39:39 +02:00
"web_accessible_resources": ["./icons/watch.png", "./icons/watch-alt.png"]
2020-09-17 14:27:08 +02:00
}