diff options
author | Christian Segundo | 2023-11-19 16:21:29 +0100 |
---|---|---|
committer | Christian Segundo | 2023-11-19 16:21:29 +0100 |
commit | c6845a798c99e96aa0e2f6daece0684a8ac50681 (patch) | |
tree | a75eec68984bcb7ff8f8c5f048b4806d5cb4ff5a /manifest.json | |
parent | d880836621f0b4b4ca036e62e34d6edc74b61e81 (diff) | |
download | moz-run-this-page-action-c6845a798c99e96aa0e2f6daece0684a8ac50681.tar.gz |
wip
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..bffc6e2 --- /dev/null +++ b/manifest.json @@ -0,0 +1,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" + //} +} |