2021-02-22 07:26:24 +01:00
|
|
|
{
|
2024-09-02 16:18:40 +02:00
|
|
|
"manifest_version": 3,
|
2021-02-22 07:26:24 +01:00
|
|
|
"name": "A Toasty OWA",
|
2024-09-02 16:18:40 +02:00
|
|
|
"version": "1.0.2",
|
2021-02-22 07:26:24 +01:00
|
|
|
"description": "Show desktop notifications for new mail and calendar alerts",
|
2024-09-02 16:18:40 +02:00
|
|
|
"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",
|
2024-09-02 16:18:40 +02:00
|
|
|
"scripting"
|
|
|
|
],
|
|
|
|
"host_permissions": [
|
|
|
|
"https://*/owa/*"
|
2021-02-22 07:26:24 +01:00
|
|
|
],
|
|
|
|
"background": {
|
2024-09-02 16:18:40 +02:00
|
|
|
"service_worker": "service_worker.js"
|
2021-02-22 07:26:24 +01:00
|
|
|
},
|
2024-09-02 16:18:40 +02:00
|
|
|
"action": {
|
2021-02-22 07:26:24 +01:00
|
|
|
"default_popup": "popup.html"
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"https://*/owa/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"contentScript.js"
|
|
|
|
]
|
|
|
|
}
|
2024-09-02 16:18:40 +02:00
|
|
|
]
|
2021-02-22 07:26:24 +01:00
|
|
|
}
|