-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (41 loc) · 1.03 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
{
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "Better Pop Up Blocker",
"version": "2.1.6",
"minimum_chrome_version": "5.0",
"background_page": "background.html",
"options_page": "options.html",
"description": "Improves the Google Chrome pop up blocker by blocking pop up windows opened by javascript & other annoyances that it misses.",
"icons":
{
"16": "Icon-16.png",
"19": "Icon-19.png",
"48": "Icon-48.png",
"128": "Icon-128.png"
},
"content_scripts": [
{
"js": [ "common/port.js", "blockStart.js" ],
"matches": [ "http://*/*", "https://*/*"],
"run_at": "document_start",
"all_frames": true
},
{
"js": [ "common/port.js", "blockIdle.js" ],
"matches": [ "http://*/*", "https://*/*"],
"run_at": "document_end",
"all_frames": true
}
],
"page_action":
{
"default_icon": "Icon-19.png",
"default_title": "Better Pop Up Blocker",
"default_popup": "browserActionPopUp.html"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
]
}