forked from JamieFarrelly/PokeGone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 991 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
{
"manifest_version": 2,
"name": "FilterBubble",
"version": "1.1",
"description": "Create your very own filter bubble!",
"page_action" :
{
"default_icon" : "images/icon-19x19.png",
"default_title" : "You are inside your Filter Bubble!"
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_globs": [
"*://*github.com*"
],
"js": ["js/jquery-2.1.4.min.js", "js/filter.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"icons" : {
"16": "images/icon-16x16.png",
"19": "images/icon-19x19.png",
"48": "images/icon-48x48.png",
"128": "images/icon-128x128.png",
"130": "images/icon-130x130.png",
"550": "images/icon-550x550.png"
},
"background": {
"persistent": false,
"page": "background.html"
},
"options_ui" : {
"chrome_style": true,
"page": "options.html"
}
}