forked from gitpod-io/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1.02 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
{
"manifest_version": 2,
"name": "Gitpod - Always ready to code",
"short_name": "Gitpod",
"version": "1.17",
"description": "Spin up fresh, automated dev environments for each task, in the cloud, in seconds.",
"icons": {
"16": "icons/gitpod-logo-16.png",
"48": "icons/gitpod-logo-48.png",
"128": "icons/gitpod-logo.png"
},
"content_scripts": [
{
"matches": [
"*://*.github.com/*",
"*://*.gitlab.com/*",
"*://*.bitbucket.org/*",
"*://*.gitlab.cn/*",
"*://*.gitpod.io/*"
],
"js": [
"dist/bundles/gitpodify.bundle.js"
]
}
],
"browser_action": {
"default_icon": {
"16": "icons/gitpod-logo-16.png",
"48": "icons/gitpod-logo-48.png",
"128": "icons/gitpod-logo.png"
},
"default_title": "Gitpod Online IDE"
},
"background": {
"scripts": ["dist/bundles/background.bundle.js"]
},
"options_ui": {
"page": "src/options/options.html"
},
"permissions": [
"activeTab",
"storage"
]
}