ora/manifest.json
2020-09-19 01:16:43 +02:00

37 lines
835 B
JSON

{
"manifest_version": 2,
"name": "Ora",
"version": "0.1",
"description": "See how much time you spend on each website",
"icons": {
"512": "icons/timer.png"
},
"browser_action": {
"default_icon": {
"512": "icons/stopwatch-inv.svg"
},
"default_title": "Ora Dashboard",
"theme_icons": [
{
"light": "./icons/stopwatch-inv.svg",
"dark": "./icons/stopwatch.svg",
"size": 512
}
]
},
"permissions": ["<all_urls>", "tabs", "unlimitedStorage", "storage"],
"background": {
"scripts": ["./src/background/index.js"]
},
"options_ui": {
"page": "./src/options/index.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": []
}
],
"web_accessible_resources": ["./icons/stopwatch.svg", "./icons/stopwatch-inv.svg"]
}