forked from OctoLinker/OctoLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 889 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
45
46
{
"name": "OctoLinker",
"version": "4.18.1",
"manifest_version": 2,
"author": "Stefan Buck",
"description": "",
"homepage_url": "https://octolinker.github.io/",
"icons": {
"128": "icon.png"
},
"minimum_chrome_version": "54",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "47.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"https://github.com/*",
"https://gist.github.com/*"
],
"js": [
"app.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"storage",
"https://github.com/",
"https://gist.github.com/",
"https://githublinker.herokuapp.com/"
]
}