Rename Tab Title

Rename Tab Title

Renames the Tab Title (Persistent across the sessions). Renaming to add custom words in tab titles makes it easy to search for tabs in the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Rename Tab Title",
  "short_name": "RTT",
  "manifest_version": 2,
  "version": "1.3resigned1",
  "description": "Renames the Tab Title",
  "author": "Anush Veeranala",
  "homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/rename-tab-title/",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "52.0"
    }
  },
  "developer": {
    "name": "Anush Veeranala",
    "url": "https://addons.mozilla.org/en-US/firefox/user/junnu8/"
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.png",
    "default_title": "Rename Tab Title",
    "default_popup": "popup/popup.html"
  }
}