-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
36 lines (36 loc) · 871 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
{
"name": "Open Github/Bitbucket in editor",
"version": "1.2.1",
"description": "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!",
"manifest_version": 3,
"permissions": ["storage"],
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https://github.com/*",
"https://bitbucket.com/*",
"https://bitbucket.org/*"
],
"run_at": "document_idle",
"js": ["contentScript.js"]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"32": "icons/32.png",
"38": "icons/38.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "65.0"
}
}
}