From 7dbeeca952b31f7c01dc20c48c184f075de44c85 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Fri, 17 Nov 2023 16:22:08 +0100 Subject: First commit --- manifest.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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" + } +} -- cgit v1.2.3