去除六间房登陆限制

去除六间房登陆限制,去模糊,去登录弹窗

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         去除六间房登陆限制
// @namespace https://greasyfork.org/users/662979
// @version      1.6
// @license      MIT
// @description  去除六间房登陆限制,去模糊,去登录弹窗
// @author       Harry云在天
// @match        *://*.6.cn/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
    var filter = document.createElement('style');
    filter.type = 'text/css';
    document.getElementsByTagName('head')[0].appendChild(filter);
    filter.appendChild(document.createTextNode("*{-webkit-filter:none!important;}"));
    var Login = document.getElementById("coopPlayerPop coopPlayerPop-show");
    if(Login != null)
    {
        Login.parentNode.removeChild(Login);
    }
    
})();