-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
44 lines (44 loc) · 1.08 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
{
"name": "Jeter Filter",
"version": "1.1",
"description": "Remove Derek Jeter from the Internet.",
"background_page": "background.html",
"options_page": "options.html",
"page_action" :
{
"default_icon" : "images/icon-19x19.png",
"default_title" : "Warning: Number Two is on this page!"
},
"permissions": [
"tabs",
"http://fluiddb.fluidinfo.com/*",
"unlimitedStorage"
],
"content_scripts": [
{
"exclude_globs": [
"http://jeterfilter.com",
"http://*.jeterfilter.com",
"http://github.com",
"http://*.github.com",
"https://github.com",
"https://*.github.com"
],
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["js/jquery-1.5.1.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"
}
}