-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
113 lines (113 loc) · 2.81 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "Content Scripts",
"version": "0.0.0",
"manifest_version": 2,
"description": "A chrome extension to inject my custom scripts.",
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"browser_action": {
"default_icon": {
"19": "images/reload-gray-19.png",
"38": "images/reload-gray-38.png"
},
"default_title": "Click to start listening for changes via websocket"
},
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [ "scripts/contentscript.js" ],
"run_at": "document_end",
"all_frames": false
},
{
"matches": [ "*://forums.donejs.com/*" ],
"css": ["sites/forums_donejs/app/assets/css/style.css"]
},
{
"matches": [ "*://*.ruby-doc.org/*" ],
"css": ["sites/ruby-doc/app/assets/css/style.css"]
},
{
"matches": [ "https://github.com/" ],
"js":[
"sites/global/jquery-2.1.0.min.js",
"sites/github/dist/github-timeline.js"
]
},
{
"matches": [ "*://*.github.com/*" ],
"css": ["sites/github/dist/style.css"],
"js": ["sites/github/app/assets/js/script.js"]
},
{
"matches": [ "*://gist.github.com/*" ],
"css": ["sites/gist_github/app/assets/css/style.css"]
},
{
"matches": [ "*://*.bitbucket.org/*" ],
"css": ["sites/bitbucket/app/assets/css/style.css"]
},
{
"matches": [ "*://*.nodejs.org/*" ],
"css": ["sites/nodejs/app/assets/css/style.css"]
},
{
"matches": [ "*://*.npmjs.org/*" ],
"css": ["sites/npmjs/app/assets/css/style.css"]
},
{
"matches": [ "*://*.vimeo.com/*" ],
"css": ["sites/vimeo/app/assets/css/style.css"]
},
{
"matches": [ "*://*.youtube.com/*" ],
"css": ["sites/youtube/dist/style.css"]
},
{
"matches": [ "*://*.twitter.com/*" ],
"css": ["sites/twitter/app/assets/css/style.css"]
},
{
"matches": [ "*://*.google.com/search?*" ],
"css": ["sites/google_search/app/assets/css/style.css"]
},
{
"matches": [ "*://mail.google.com/*" ],
"css": ["sites/mail_google/app/assets/css/style.css"]
},
{
"matches": [ "*://developer.chrome.com/*" ],
"css": ["sites/developer_chrome/app/assets/css/style.css"]
},
{
"matches": [
"*://stackoverflow.com/*",
"*://superuser.com/*"
],
"css": ["sites/stackoverflow/dist/style.css"]
},
{
"matches": ["<all_urls>"],
"css": ["sites/global/global.css"],
"js": ["sites/global/global.js"]
}
],
"web_accessible_resources": [ "*" ],
"permissions": [
"tabs",
"alarms",
"http://*/*",
"https://*/*"
]
}