-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathmanifest.json
File metadata and controls
48 lines (48 loc) · 1.04 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": "AntiSocial",
"version": "0.2.1",
"description": "Remove social media elements from certain sites",
"permissions": [
"storage",
"activeTab"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://github.com/*", "*://*.youtube.com/*", "*://youtube.com/*"],
"js": [
"content/css/github.js",
"content/css/youtube.js",
"content/injector.js"
]
}
],
"options_page": "options/options.html",
"browser_action": {
"default_popup": "options/options.html",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png",
"256": "icon-256.png"
}
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png",
"256": "icon-256.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}