-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (28 loc) · 879 Bytes
/
manifest.json
File metadata and controls
29 lines (28 loc) · 879 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
{
"name": "gitq",
"version": "1.0",
"description":"Visual Q's for repositories on Github",
"minimum_chrome_version": "46",
"browser_action":{
"default_icon":{
"16":"gitq-logo.png",
"32":"gitq-logo.png",
"48":"gitq-logo.png",
"128":"gitq-logo.png"
},
"icons":{
"16":"gitq-logo.png",
"32":"gitq-logo.png",
"48":"gitq-logo.png",
"128":"gitq-logo.png"
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["alarms", "webRequest", "webRequestBlocking", "activeTab", "tabs","https://gitq.herokuapp.com"],
"content_scripts":[{
"matches" : ["https://github.com/*/*"],
"js":["background.js"],
"all_frames":false
}],
"manifest_version":2
}