-
Notifications
You must be signed in to change notification settings - Fork 24
/
manifest.json
62 lines (62 loc) · 1.53 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
{
"name": "Omnibox for Github",
"short_name": "Github Omni",
"description": "Github-powered omnibox for chrome!",
"version": "1.8.1",
"manifest_version": 2,
"homepage_url": "https://github.com/ProLoser/Github-Omnibox",
"options_page": "help.html",
"omnibox": { "keyword": "gh" },
"permissions": [
"tabs",
"https://github.com/login/oauth/access_token",
"storage",
"history"
],
"icons": {
"114": "images/apple-touch-icon-114.png",
"144": "images/apple-touch-icon-144.png",
"16": "images/favicon-16.png",
"32": "images/favicon-32.png",
"512": "images/fluidicon.png"
},
"background": {
"scripts": [
"lib/underscore-min.js",
"oauth2/oauth2.js",
"src/Defer.js",
"src/Steps.js",
"src/StepsManager.js",
"src/patterns/help.js",
"src/patterns/my.js",
"src/patterns/new.js",
"src/patterns/repoActions.js",
"src/patterns/userActions.js",
"src/patterns/gist.js",
"src/Omni.js",
"background.js"
]
},
"content_scripts": [
{
"js": [ "oauth2/oauth2_inject.js" ],
"matches": [ "https://github.com/robots.txt*" ],
"run_at": "document_start"
},
{
"css": [ "decorate.css" ],
"js": [ "decorate.js" ],
"matches": [ "*://github.com/*" ],
"run_at": "document_end"
},
{
"matches": ["*://github.com/*"],
"js": ["lib/jquery.min.js", "expander.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"oauth2/oauth2.html",
"help.html"
]
}