去除代码模糊效果

只针对https://bddxg.top,因为采用的是spa页面,可能你需要刷新页面才会生效

目前为 2023-05-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         去除代码模糊效果
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  只针对https://bddxg.top,因为采用的是spa页面,可能你需要刷新页面才会生效
// @author       小垃圾
// @match        https://bddxg.top/article/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bddxg.top
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(() => {
       var lines = document.getElementsByClassName("line");
       if(lines) {
         for (var i = 0; i < lines.length; i++) {
            lines[i].classList.add("has-focus");
         }
       }
    }, 3000)
})();

QingJ © 2025

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