Add URL To Window Title

Add URL To Window Title

Add full URL or hostname of the current page to the window title. Helps other apps, e.g., KeePass, identify current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add URL To Window Title",
  "author": "Eric H Goldman",
  "version": "2.2.1",
  "minimum_chrome_version": "42",
  "manifest_version": 2,
  "description": "__MSG_manifestDescription__",
  "homepage_url": "https://github.com/erichgoldman/add-url-to-window-title",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "managetitle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}