-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
54 lines (36 loc) · 986 Bytes
/
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
{
"manifest_version": 2,
"name": "Black Lister",
"version": "0.0.2",
"description": "Remove crappy links from google",
"permissions": ["tabs", "<all_urls>", "storage"],
"page_action": {
"default_icon": {
"19": "images/icon_19.png",
"38": "images/icon_38.png"
},
"default_title": "Black Lister",
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at" : "document_end",
"matches": [ "http://*/*", "https://*/*", "<all_urls>" ],
"js": ["modify_css.js"],
"css": ["black_lister.css"]
}
],
"web_accessible_resources": [
"black_lister.css",
"black_list.json",
"images/MushroomCloud.png",
"images/gear.png"
],
"icons": { "16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png" },
"background": {
"persistent": false,
"scripts": ["bg.js"]
}
}