NL+ | NodeLoc 增强脚本

NodeLoc 增强脚本

目前為 2024-10-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         NL+ | NodeLoc 增强脚本
// @namespace    https://www.nodeloc.com/
// @version      0.1.0
// @description  NodeLoc 增强脚本
// @author       Eoyz369
// @run-at       document-start
// @match        https://www.nodeloc.com/*
// @icon         https://www.nodeloc.com/assets/favicon-ptypmduq.png
// @license      gpl-3.0
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    var wghtmlElement = document.getElementById("wghtml");
    if (wghtmlElement) {
        wghtmlElement.remove();
    }
})();