NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Unknown Oj // @namespace http://tampermonkey.net/ // @version 2024-02-27 // @description try to take over the world! // @author You // @match www.nfls.com.cn/* // @icon https://www.google.com/s2/favicons?sz=64&domain=luogu.com.cn // @grant none // @license AGPL-3.0-or-later // ==/UserScript== (function() { 'use strict'; var id=setInterval(()=>{ try{ for(var el of document.querySelectorAll('a')){ el.innerHTML='<span class="status unknown" "><i class="icon question circle"></i> Unknown</span>'; }; }catch{}; },500); // Your code here... })();