-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (34 loc) · 960 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "Browsing Fortress - Online Protection",
"description": "Real time detection of malicious and scam websites while you browse.",
"version": "1.0.1",
"manifest_version": 3,
"background": {
"service_worker": "./service-worker/main.js"
},
"permissions": ["storage", "tabs", "background","webNavigation", "notifications"],
"host_permissions": [
"https://safebrowsing.googleapis.com/*"
],
"action": {
"default_icon": {
"24": "./images/secure-shield.png"
},
"default_title": "Popup",
"default_popup": "./popup/popup.html"
},
"externally_connectable": {
"matches": ["https://safebrowsing.googleapis.com/*"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["./content-script.js"]
}],
"web_accessible_resources": [
{
"resources": ["./credentials.json"],
"matches": ["<all_urls>"],
"extension_ids": []
}
]
}