a lot of stuff

This commit is contained in:
2020-09-18 21:00:59 +02:00
parent 789dc37452
commit 22b2225a41
21 changed files with 1658 additions and 74 deletions

View File

@@ -8,14 +8,31 @@
"icons": {
"512": "icons/timer.png"
},
"browser_action": {
"default_icon": {
"512": "icons/stopwatch-inv.svg"
},
"default_title": "Ora Dash",
"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": ["borderify.js"]
}
]
],
"web_accessible_resources": ["./icons/stopwatch.svg", "./icons/stopwatch-inv.svg"]
}