ora/manifest.json

38 lines
903 B
JSON

{
"manifest_version": 2,
"name": "Ora",
"version": "0.8.2",
"description": "See how much time you spend on each website and set limits",
"icons": {
"512": "icons/watch.png"
},
"browser_action": {
"default_icon": {
"512": "icons/watch.png"
},
"default_title": "Ora Dashboard",
"theme_icons": [
{
"light": "./icons/watch.png",
"dark": "./icons/watch-alt.png",
"size": 512
}
]
},
"permissions": ["<all_urls>", "tabs", "unlimitedStorage", "storage"],
"background": {
"scripts": ["./src/background/index.js"]
},
"options_ui": {
"page": "./src/dashboard/index.html#/options?nav=false"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./src/client/index.js"]
}
],
"web_accessible_resources": ["./icons/watch.png", "./icons/watch-alt.png", "./src/dashboard/index.html"]
}