Tab Titler

Tab Titler

This extension lets you change the title of a tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.1.min.js",
        "titleChange.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "This extension lets you change the title of a tab",
  "version": "1.1",
  "background": {
    "scripts": [
      "popup.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "name": "Tab Titler",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}