Rename Tab

Rename Tab

Allows you to rename tabs by right-clicking the tab and selecting "Rename Tab"

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Rename Tab",
  "version": "1.1",
  "description": "Allows you to rename tabs",
  "permissions": [
    "activeTab",
    "tabs",
    "menus",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tab_renamer.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4bcac7c8-259d-4f8c-99f5-63b40a3d2584}"
    }
  }
}