Url in title

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

Pada tanggal 13 November 2016. Lihat %(latest_version_link).

// ==UserScript==
// @name       Url in title
// @namespace  https://infovikol.ch/
// @version    0.1
// @description  Puts the url in the title bar. Very useful for KeePass.
// @match      http*://*/*
// @grant   none
// ==/UserScript==

document.title=document.title+' '+document.URL;