Remove LUE from tab title

Remove zone from tab title so it's easier to see what's what

09.04.2023 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name         Remove LUE from tab title
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove zone from tab title so it's easier to see what's what
// @author       You
// @match        https://lue.websight.blue/thread/*
// @match        https://lue.websight.blue/threads/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=websight.blue
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.title = document.title.replace(/^LUE - /,'');
})();