summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorChristian Segundo2023-11-19 16:21:29 +0100
committerChristian Segundo2023-11-19 16:21:29 +0100
commitc6845a798c99e96aa0e2f6daece0684a8ac50681 (patch)
treea75eec68984bcb7ff8f8c5f048b4806d5cb4ff5a /manifest.json
parentd880836621f0b4b4ca036e62e34d6edc74b61e81 (diff)
downloadmoz-run-this-page-action-c6845a798c99e96aa0e2f6daece0684a8ac50681.tar.gz
wip
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json44
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"
+ //}
+}