Greasy Fork is available in English.

芯参数解除限制

隐藏该网站的登陆提示以及移除模糊样式

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         芯参数解除限制
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  隐藏该网站的登陆提示以及移除模糊样式
// @author       icanye
// @match        https://www.xincanshu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector(".zheceng").remove();
    document.querySelector("[class*='denglutishi']").style.display="none";
    document.querySelectorAll(".paofenjietu").forEach(T=>T.style.filter="blur(0px)");
    document.querySelectorAll("#chart-wrapper").forEach(T=>T.style.filter="blur(0px)");
})();