-
Notifications
You must be signed in to change notification settings - Fork 37
/
manifest.json
48 lines (41 loc) · 1.46 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
48
{
"manifest_version": 2,
"name": "Pretty Pull Requests (Github)",
"description": "This extension applies various tweaks to the github pull-request code review pages.",
"version": "2.11.1",
"icons": {
"32": "ppr-logo/32x32.png",
"64": "ppr-logo/64x64.png",
"128": "ppr-logo/128x128.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions" : ["tabs", "storage", "activeTab"],
"optional_permissions" : ["http://*/*", "https://*/*"],
"content_scripts": [
{
"matches": ["https://github.com/*/pull/*/files",
"https://github.com/*/commit*",
"https://github.com/*/pulls*",
"https://github.com/*/compare*",
"https://github.com/*/*/pulls*",
"https://github.com/*/*/pull/*",
"https://github.com/*/*/pull/*/files",
"https://github.com/*/*/commit*",
"https://github.com/*/*/compare*"
],
"js": ["jquery-1.9.1.min.js", "github.com.js"],
"css": ["pullrequest.css"]
}
],
"page_action": {
"default_icon": "ppr-logo/128x128.png",
"default_title": "Pretty Pull Requests",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"jquery-1.9.1.min.js"
],
"options_page": "options.html"
}