-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
81 lines (81 loc) · 1.7 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
74
75
76
77
78
79
80
81
{
"background": {
"scripts": [
"ext/common.js",
"ext/background.js",
"lib/compat.js",
"lib/info.js",
"lib/io.js",
"lib/adblockplus.js",
"lib/punycode.js",
"lib/publicSuffixList.js",
"lib/basedomain.js",
"lib/sha1.js",
"lib/jsbn.js",
"lib/rsa.js",
"webrequest.js",
"popupBlocker.js",
"iconAnimation.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icons/abp-19.png",
"default_popup": "popup.html",
"default_title": "PMAdBlock"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"ext/common.js",
"ext/content.js",
"include.preload.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"include.postload.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"default_locale": "en_US",
"description": "A Penn Manor Fork of the free adblock tool for Chrome: Blocks annoying ads, banners and much more",
"icons": {
"128": "icons/abp-128.png",
"16": "icons/abp-16.png",
"32": "icons/abp-32.png",
"48": "icons/abp-48.png"
},
"manifest_version": 2,
"minimum_chrome_version": "18.0",
"name": "PMAdBlock",
"options_page": "options.html",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"unlimitedStorage",
"notifications"
],
"version": "1.1",
"web_accessible_resources": [
"block.html",
"icons/abp-128.png"
]
}