Hostname in Title

Hostname in Title

Add hostname of current page to title.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hostname in Title",
  "description": "Add hostname of current page to title.",
  "version": "1.1",
  "permissions": [],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "add_host_to_title.js"
      ]
    }
  ]
}