-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
53 lines (53 loc) · 1.23 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
{
"name": "StashPop",
"author": "David Poeschl",
"description": "Adds Email and Test Failure Management Features to GitHub",
"version": "1.1.3",
"manifest_version": 2,
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"web_accessible_resources": [
"scripts/injectedcode.js",
"images/loading.gif"
],
"content_scripts": [
{
"matches": [ "https://github.com/*" ],
"css": [ "style.css", "jquery-ui.theme.min.css" ],
"js": [ "jquery-2.1.4.min.js", "jquery.color-2.1.2.js", "moment.min.js", "content.js", "jquery-ui.min.js" ],
"run_at": "document_start"
}
],
"background": {
"scripts": [ "background.js" ],
"persistent": false
},
"icons": {
"16": "images/stashpop_16.png",
"48": "images/stashpop2_48.png",
"128": "images/stashpop2_128.png"
},
"browser_action": {
"default_icon": {
"48": "images/stashpop_48.png"
}
},
"permissions": [
"storage",
"https://github.com/*",
"http://dotnet-ci.cloudapp.net/*",
"http://ci.roslyn.io/",
"https://ci.roslyn.io/"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
]
}