Greasy Fork is available in English.

add url in title bar

add url in title bar of the web browser

La data de 26-07-2022. Vezi ultima versiune.

// ==UserScript==
// @name         add url in title bar
// @version      0.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 = title + " " + location;
    }
    //console.log(document.title);
    // Your code here...
})();