PhishGuardian/extension/manifest.json

29 lines
618 B
JSON

{
"manifest_version": 3,
"name": "PhishGuardian",
"version": "1.0",
"permissions": ["storage", "activeTab", "scripting", "notifications"],
"host_permissions": [
"http://localhost:5000/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}