add url in title bar of the web browser
// ==UserScript==
// @name add url in title bar
// @version 0.1.1
// @namespace local
// @description add url in title bar of the web browser
// @author You
// @match *://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license none
// ==/UserScript==
(function() {
'use strict';
let title = document.title;
let location = document.location.href;
if(title.indexOf(location) === -1){
document.title = location + " " + title;
}
})();