Url in title

Puts the url in the title bar. Very useful for KeePass.

  1. // ==UserScript==
  2. // @name Url in title
  3. // @namespace https://infovikol.ch/
  4. // @version 0.1
  5. // @description Puts the url in the title bar. Very useful for KeePass.
  6. // @match http*://*/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. document.title=document.title+' '+document.URL;