{ "manifest_version": 3, "name": "ShieldAI - Phishing & Spam Protection", "version": "0.1.0", "description": "Real-time phishing detection and spam protection powered by ShieldAI", "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "storage", "tabs", "scripting", "declarativeNetRequest", "notifications" ], "host_permissions": [ "https://*/*", "http://*/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, "options_page": "options.html", "content_scripts": [ { "matches": ["https://*/*", "http://*/*"], "js": ["content.js"], "run_at": "document_start", "all_frames": false } ], "declarative_net_request": { "rule_resources": [ { "id": "phishing_rules", "enabled": true, "path": "rules/phishing-rules.json" } ] } }