-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
executable file
·44 lines (44 loc) · 961 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
43
44
{
"name": "Github Turbo PR",
"version": "0.2.1",
"manifest_version": 2,
"description": "An extension to optimize github for handling big pull request. 🚀",
"homepage_url": "http://github.com/s-yadav/github-turbo-pr",
"icons": {
"16": "icons/turbopr16.png",
"48": "icons/turbopr48.png",
"128": "icons/turbopr128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"dist/background.js"
],
"persistent": true
},
"page_action": {
"default_icon": {
"19": "icons/turbopr19_disabled.png",
"38": "icons/turbopr38_disabled.png"
},
"default_title": "Enable Turbo PR"
},
"permissions": [
"https://github.com/*",
"webNavigation"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist/inject.js"
]
}
],
"web_accessible_resources": [
"icons/turbopr38.png",
"icons/turbopr38_disabled.png"
]
}