Dateien nach "/" hochladen

This commit is contained in:
2025-12-05 19:26:39 +00:00
parent d5601471e9
commit 47b71bced8
7 changed files with 1288 additions and 0 deletions

31
manifest.json Normal file
View File

@@ -0,0 +1,31 @@
{
"manifest_version": 3,
"name": "Uptime Monitor",
"version": "1.0",
"description": "Überwacht Dienste und benachrichtigt mich, wenn sie offline gehen.",
"permissions": [
"storage",
"notifications",
"alarms"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.PNG",
"48": "icons/icon48.PNG",
"128": "icons/icon128.PNG"
}
},
"options_page": "options.html",
"icons": {
"16": "icons/icon16.PNG",
"48": "icons/icon48.PNG",
"128": "icons/icon128.PNG"
}
}