-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
42 lines (40 loc) · 1006 Bytes
/
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
{
"manifest_version": 2,
"name": "GitHub with a cape",
"description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
"short_name": "Github with a cape",
"version": "1.4.4",
"icons": {
"18": "icons/18.png",
"19": "icons/19.png",
"38": "icons/38.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": [
"https://www.github.com/*",
"http://www.github.com/*",
"https://github.com/*",
"http://github.com/*"
],
"js": [
"configuration.js",
"notifications.js",
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"options_page": "options/options.html",
"options_ui": {
"page": "options/options.html"
},
"permissions": ["storage"],
"web_accessible_resources": ["notifications.html"]
}