-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmanifest.json
41 lines (41 loc) · 948 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
{
"manifest_version": 2,
"short_name": "Builds Tab",
"name": "Builds Tab for Github",
"description": "Adds a builds tab to Github repos.",
"version": "0.2.1",
"author": "duxet",
"developer": {
"name": "duxet",
"url": "https://github.com/duxet/builds-tab"
},
"homepage_url": "https://github.com/duxet/builds-tab",
"icons": {
"48": "assets/icon48.png",
"96": "assets/icon96.png"
},
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"dist/github.js"
]
}
],
"permissions": [
"storage",
"https://api.travis-ci.org/*",
"https://api.travis-ci.com/*",
"https://circleci.com/api/v1.1/*"
],
"web_accessible_resources": [
"assets/*"
],
"options_ui": {
"page": "assets/options.html",
"chrome_style": true,
"browser_style": true
}
}