-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 918 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 918 Bytes
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
{
"manifest_version": 3,
"name": "SusRadar",
"version": "1.0.0",
"description": "🚨 Spot sus companies and find better alternatives! Your radar for suspicious websites.",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "src/background/background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/components/common.js", "src/storage/LocalStorageProvider.js", "src/matching/ExactMatcher.js", "src/components/ui-components.js", "src/components/server-provider.js", "src/content/content.js"],
"css": ["src/content/content.css"]
}
],
"action": {
"default_popup": "src/pages/popup.html",
"default_title": "SusRadar - Add to radar!"
},
"web_accessible_resources": [
{
"resources": ["src/*"],
"matches": ["<all_urls>"]
}
]
}