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
|
// vim: ft=jsonc
{
"manifest_version": 2,
"name": "GitLab local edit",
"version": "1.0",
"description": "Your editor, your rules",
"developer": {
"name": "Christian Segundo",
"url": "https://git.segundo.io/moz-glab-local-edit/"
},
"homepage_url": "https://git.segundo.io/moz-glab-local-edit/",
"permissions": [
"tabs",
"storage",
"webNavigation"
],
"page_action": {
"default_title": "Open in ViM",
"default_icon": "icons/vim.svg"
},
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": [
"storage.js",
"page_action.js",
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "moz-glab-local-edit@git.segundo.io"
}
}
//"icons": {
//"48": "icons/icon-48.png",
//"96": "icons/icon-96.png",
//"128": "icons/icon-128.png",
//"256": "icons/icon-256.png",
//"512": "icons/icon-512.png",
//"850": "icons/icon-850.png"
//}
}
|