Tab Rename

Tab Rename

Renames your browser tabs to whatever you want

Merlin
Additional files are visible only to premium users

manifest.json


{
  "$schema": "https://json.schemastore.org/webextension.json",
  "manifest_version": 2,
  "name": "Tab Rename",
  "description": "Renames your browser tabs to whatever you want",
  "version": "1.0.0",
  "icons": {
    "16": "icons/icon.svg",
    "32": "icons/icon.large.svg"
  },
  "permissions": [
    "tabs",
    "storage",
    "menus"
  ],
  "background": {
    "scripts": [
      "background_script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "icons/icon.svg",
      "32": "icons/icon.large.svg"
    },
    "default_popup": "pageAction/index.html",
    "default_title": "Tab Rename",
    "show_matches": [
      "<all_urls>"
    ],
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{3ac39dce-611a-4abe-8e5e-c11863de0d7d}"
    }
  }
}