Rename Tab Title

Rename Tab Title

Renames the Tab Title

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rename Tab Title",
  "short_name": "RTT",
  "manifest_version": 2,
  "version": "1.2",
  "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"
  }
}