Tab Rename

Tab Rename

Adds the ability to change the title of your tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Rename",
  "description": "Adds the ability to change the title of your tabs",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "icons": {
    "16": "icons/tag16.png",
    "48": "icons/pen-icon48.png",
    "128": "icons/pen-icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/tag16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "rename.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+R"
      }
    }
  }
}