-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
73 lines (73 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"manifest_version": 2,
"name": "Another Ad Block",
"description": "An Ad Blocker extension that attempts to remove as many ads as possible",
"version": "1.2.0",
"author": "ApocalypseCalculator",
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"injects/youtube.js"
],
"matches": [
"https://youtube.com/*", "https://www.youtube.com/*"
]
},
{
"js": [
"injects/google.js"
],
"matches": [
"https://www.google.com/search*", "https://www.google.ca/search*"
]
},
{
"js": [
"injects/reddit.js"
],
"matches": [
"https://www.reddit.com/*"
]
},
{
"js": [
"injects/amazon.js"
],
"matches": [
"https://www.amazon.com/*", "https://www.amazon.ca/*"
]
}
,
{
"js": [
"injects/wikipedia.js"
],
"matches": [
"https://*.wikipedia.org/*"
]
}
],
"web_accessible_resources": [],
"browser_action": {
"default_icon": {
"32": "icon.png"
},
"default_title": "Another Ad Block"
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}