-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (43 loc) · 1.14 KB
/
manifest.json
File metadata and controls
48 lines (43 loc) · 1.14 KB
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
48
{
"manifest_version": 2,
"name": "CensorCAT",
"version": "1.0.0",
"description": "A dynamic and lightweight censoring extension for Firefox.",
"homepage_url": "https://github.com/obviouslyweb/censorcat",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png",
"512": "icons/icon-512.png"
},
"browser_specific_settings": {
"gecko": {
"data_collection_permissions": {
"required": ["none"]
}
}
},
"permissions": [
"storage",
"tabs",
"downloads"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["defaults.js", "storage.js", "censor.js"],
"run_at": "document_idle"
}
],
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png"
},
"default_title": "CensorCAT",
"default_popup": "popup/ui.html"
}
}