{ "manifest_version": 3, "name": "Server Status Checker", "version": "1.0", "description": "Eine Erweiterung zur Überwachung des Serverstatus für hinzugefügte Domains", "permissions": ["activeTab", "https://*/*", "notifications", "storage"], "action": { "default_popup": "popup.html", "default_icon": { "16": "images/icon16.png", "48": "images/icon48.png", "128": "images/icon128.png" } }, "options_page": "options.html", "icons": { "16": "images/icon16.png", "48": "images/icon48.png", "128": "images/icon128.png" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } }