myTitleURL

Add the current URL to the windows title bar
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "myTitleURL",
  "version": "0.3",
  "description": "Add the current URL to the windows title bar",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "defaultSettings.js",
        "titleUrlPage.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "defaultSettings.js",
      "titleurl.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{cbf07596-4bf7-4d0c-bc3f-3f02095b4c8d}"
    }
  }
}