forked from rainforestapp/github-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 1.31 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
{
"name": "Github Chrome",
"version": "0.0.7",
"manifest_version":2,
"description": "A Chrome extension for Github, allowing quick viewing and navigation to your repos, viewing your issues and creating new issues!",
"browser_action": {
"default_title": "Github",
"default_popup": "popup.html",
"default_icon": "assets/images/octocat_16.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https://github.com/robots.txt*"
],
"js": ["libs/oauth2/oauth2_inject.js"],
"run_at": "document_start"
}
],
"homepage_url": "https://github.com/rainforestapp/github-chrome",
"background": {
"scripts" : []
},
"permissions": [
"alarms",
"storage",
"notifications",
"https://github.com/login/oauth/access_token",
"https://api.github.com/*"
],
"web_accessible_resources": [
"assets/notification_icon_48.png",
"assets/images/octocat_16.png",
"assets/images/octocat_48.png",
"assets/images/octocat_128.png",
"assets/fonts/github-icons.eot",
"assets/fonts/github-icons.svg",
"assets/fonts/github-icons.ttf",
"assets/fonts/github-icons.woff"
],
"icons": {
"16": "assets/images/octocat_16.png",
"48": "assets/images/octocat_48.png",
"128": "assets/images/octocat_128.png"
}
}