summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json34
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"
+ }
+}