forked from sorenlouv/github-widescreen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (30 loc) · 735 Bytes
/
manifest.json
File metadata and controls
35 lines (30 loc) · 735 Bytes
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
{
"manifest_version": 2,
"name": "Widescreen for GitHub",
"short_name": "Widescreen for Github",
"description": "Toggle the width of GitHub with a click",
"version": "0.7.5",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": ["https://github.com/*", "storage"],
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
}
},
"background": {
"scripts": ["background-scripts.js"]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["https://*.github.com/*"],
"js": ["content-scripts.js"],
"css": ["content-styles.css"]
}
]
}