Title - host

Title - host

This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Title - host",
  "short_name": "Title - host",
  "author": "Jeff Schollaart",
  "description": "This extension changes the tab title to include the host.  Make Chrome fully compatible with KeePass autotype.",
  "version": "1.1.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "titlehost.js"
      ]
    }
  ]
}