Add URL to Window Title (Advanced KeePass Usage)

Add URL to Window Title (Advanced KeePass Usage)

Add the full URL or hostname of the current web page to the window title. Designed to help other applications identify the current window. Helps KeePass (http://www.keepass.info) to identify the current URL for auto-type.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Add URL To Window Title",
  "author": "Eric H Goldman",
  "version": "2.2.2resigned1",
  "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"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "60.0"
    }
  }
}