-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
47 lines (47 loc) · 1.08 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 3,
"name": "Curse Cloak",
"description": "This extension will mask out the cuss words with astrick(*) nowadays a lot of teenagers are on social media and they are sometimes exposed to 18+ content/textual-content, explicit content etc. so to prevent that this extension will help a lot, basically this extension acts as a parental lock on children's devices.",
"version": "1.0",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/face.png",
"48": "images/face.png",
"128": "images/face.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"cuss_words.csv"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "images/face.png",
"48": "images/face.png",
"128": "images/face.png"
}
}