A-Toasty-OWA/public/manifest.json

38 lines
699 B
JSON
Raw Permalink Normal View History

2021-02-22 07:26:24 +01:00
{
"manifest_version": 3,
2021-02-22 07:26:24 +01:00
"name": "A Toasty OWA",
"version": "1.0.2",
2021-02-22 07:26:24 +01:00
"description": "Show desktop notifications for new mail and calendar alerts",
"icons": {
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
2021-02-22 07:26:24 +01:00
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"notifications",
"scripting"
],
"host_permissions": [
"https://*/owa/*"
2021-02-22 07:26:24 +01:00
],
"background": {
"service_worker": "service_worker.js"
2021-02-22 07:26:24 +01:00
},
"action": {
2021-02-22 07:26:24 +01:00
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*/owa/*"
],
"js": [
"contentScript.js"
]
}
]
2021-02-22 07:26:24 +01:00
}