forked from JetBrains/toolbox-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
54 lines (54 loc) · 1.31 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
49
50
51
52
53
54
{
"manifest_version": 2,
"name": "JetBrains Toolbox Extension",
"short_name": "Toolbox",
"description": "Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser",
"version": "1.0",
"icons": {
"128": "icon-128.png"
},
"browser_action": {
"default_icon": "icon-disabled-128.png",
"default_title": "JetBrains Toolbox Extension",
"default_popup": "jetbrains-toolbox-disabled-popup.html"
},
"background": {
"scripts": ["jetbrains-toolbox-background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://github.com/*"],
"js": ["jetbrains-toolbox-github-public.js"]
},
{
"matches": ["https://gitlab.com/*"],
"js": ["jetbrains-toolbox-gitlab-public.js"]
},
{
"matches": ["https://bitbucket.org/*"],
"js": ["jetbrains-toolbox-bitbucket-public.js"]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [
"*.svg"
],
"permissions": [
"activeTab",
"contextMenus",
"storage",
"https://github.com/*",
"https://api.github.com/*",
"https://gitlab.com/*",
"https://bitbucket.org/*",
"https://api.bitbucket.org/*"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
]
}