2024-05-31 22:49:37 +02:00
|
|
|
{
|
|
|
|
"manifest_version": 3,
|
|
|
|
"name": "PhishGuardian",
|
|
|
|
"version": "1.0",
|
2024-06-09 16:47:41 +02:00
|
|
|
"permissions": [
|
|
|
|
"storage",
|
|
|
|
"activeTab",
|
|
|
|
"scripting",
|
|
|
|
"notifications",
|
|
|
|
"identity"
|
|
|
|
],
|
|
|
|
"host_permissions": [
|
|
|
|
"http://localhost:5000/*",
|
|
|
|
"https://www.googleapis.com/"
|
|
|
|
],
|
2024-05-31 22:49:37 +02:00
|
|
|
"background": {
|
|
|
|
"service_worker": "background.js"
|
|
|
|
},
|
|
|
|
"action": {
|
2024-06-09 16:47:41 +02:00
|
|
|
"default_popup": "popup.html",
|
2024-05-31 22:49:37 +02:00
|
|
|
"default_icon": {
|
2024-06-10 19:36:35 +02:00
|
|
|
"16": "images/icon16.png",
|
|
|
|
"48": "images/icon48.png",
|
|
|
|
"128": "images/icon128.png"
|
2024-05-31 22:49:37 +02:00
|
|
|
}
|
2024-06-09 16:47:41 +02:00
|
|
|
},
|
|
|
|
"icons": {
|
2024-06-10 19:36:35 +02:00
|
|
|
"16": "images/icon16.png",
|
|
|
|
"48": "images/icon48.png",
|
|
|
|
"128": "images/icon128.png"
|
2024-06-09 16:47:41 +02:00
|
|
|
},
|
|
|
|
"oauth2": {
|
|
|
|
"client_id": "",
|
|
|
|
"scopes": ["https://www.googleapis.com/auth/gmail.readonly"]
|
|
|
|
},
|
|
|
|
"content_security_policy": {
|
|
|
|
"extension_pages": "script-src 'self'; object-src 'self'"
|
2024-05-31 22:49:37 +02:00
|
|
|
}
|
|
|
|
}
|