-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 1.12 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
{
"manifest_version": 2,
"name": "Hecate Heartbeat",
"description": "Adds a rating widget to all GitHub pull requests so you can give each PR a score for tracking team progress over time.",
"icons": {
"16": "hecate-icon.png",
"32": "hecate-icon.png",
"48": "hecate-icon.png",
"128": "hecate-icon.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Open Hecate popup",
"default_icon": {
"16": "hecate-icon.png",
"32": "hecate-icon.png",
"48": "hecate-icon.png",
"128": "hecate-icon.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["https://github.com/*"],
"js": ["github.js"]
}],
"web_accessible_resources": [
"*.js.map"
],
"externally_connectable": {
"matches": []
},
"permissions": [
"storage",
"https://github.com/"
]
}