mirror of
https://github.com/cupcakearmy/ora.git
synced 2024-11-01 00:34:11 +01:00
38 lines
891 B
JSON
38 lines
891 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Ora",
|
|
"version": "0.7",
|
|
|
|
"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"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["./src/client/index.js"]
|
|
}
|
|
],
|
|
"web_accessible_resources": ["./icons/watch.png", "./icons/watch-alt.png", "./src/dashboard/index.html"]
|
|
}
|