diff options
author | Christian Segundo | 2023-11-17 16:22:08 +0100 |
---|---|---|
committer | Christian Segundo | 2023-11-17 16:22:08 +0100 |
commit | 7dbeeca952b31f7c01dc20c48c184f075de44c85 (patch) | |
tree | 110bab8f0d7d042a8b1f0cee6c733d3164f025d4 /manifest.json | |
download | moz-tab-rename-master.tar.gz |
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..16cf958 --- /dev/null +++ b/manifest.json @@ -0,0 +1,34 @@ +{ + "manifest_version": 2, + "name": "Tab rename", + "version": "1.0", + "description": "Rename tabs from the context menu", + "developer": { + "name": "Christian Segundo", + "url": "https://git.segundo.io/moz-tab-rename/" + }, + "homepage_url": "https://git.segundo.io/moz-tab-rename/", + "permissions": [ + "activeTab", + "menus", + "tabs" + ], + "background": { + "scripts": [ + "background.js" + ] + }, + "browser_specific_settings": { + "gecko": { + "id": "moz-tab-rename@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" + } +} |