// ==UserScript== // @name Title显示用户 // @namespace Akso // @description Title显示已登录的用户 // @license MIT // @version 0.07 // @author 李海林 // @match http://*/* // @match https://*/* // @icon https://ycosd-config.aksoegmp.com/favicon.ico // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; let intervalId = setInterval(function(){let dom=document.querySelector("#root > header > div.header_QZ9Sk > div.user-info_Gu4hn > a:nth-child(4)");if(dom!=undefined){document.title=dom.text;clearInterval(intervalId)}},1000) })();