-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
manifest.json
33 lines (33 loc) · 997 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
{
"manifest_version": 3,
"name": "HaramBlur",
"description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.",
"version": "0.2.6",
"permissions": ["storage", "offscreen", "contextMenus"],
"author": "[email protected]",
"action": {
"default_title": "HaramBlur",
"default_popup": "src/popup.html"
},
"minimum_chrome_version": "109",
"background": {
"service_worker": "src/background.js"
},
"icons": {
"48": "src/assets/hb-icon-48.png",
"128": "src/assets/hb-icon-128.png"
},
"content_scripts": [
{
"js": ["dist/content.js"],
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["src/assets/*"],
"matches": ["https://*/*", "http://*/*"]
}
]
}