Tab Mix - Rename Tab

Tab Mix - Rename Tab

Provides a simple interface to change tab title and option to use bookmark name as tab title. This extensions is part of the new Tab Mix WebExtension collection that will eventually replace the legacy Tab Mix Plus extensions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "1.0.2",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "default_locale": "en_US",
  "description": "__MSG_description__",
  "icons": {
    "32": "icons/rename_icon.png"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "bookmarks",
    "contextMenus",
    "sessions",
    "storage",
    "tabs"
  ],
  "background": {
    "page": "background_scripts/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icons/rename_icon.svg",
    "browser_style": true,
    "default_title": "Rename Tab"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  }
}