geniuschatremover

small Script to remove chat on page load

目前为 2016-12-12 提交的版本。查看 最新版本

// ==UserScript==
// @name            geniuschatremover
// @description     small Script to remove chat on page load
// @description:en  small Script to remove chat on page load
// @version         2
// @author          nnmrts
// @match           http://genius.com/*
// @match           https://genius.com/*
// @grant           none
// @require         http://code.jquery.com/jquery-3.1.1.min.js
// @namespace https://gf.qytechs.cn/users/86510
// ==/UserScript==

(function(){
$( document ).ready( function () {
    $("chat")[0].parentNode.removeChild($("chat")[0]);
    $("#chat")[0].parentNode.removeChild($("#chat")[0]);
    $(".chat")[0].parentNode.removeChild($(".chat")[0]);
});
}());

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址