LOC 屏蔽个人空间diy_style

屏蔽hostloc花里胡哨的个人空间css

    // ==UserScript==
    // @name                LOC 屏蔽个人空间diy_style
    // @namespace discuz
    // @version      0.1
    // @description  屏蔽hostloc花里胡哨的个人空间css
    // @include        http*://www.hostloc.com/*
   // @include        http*://hostloc.com/*
    // @include        http*://*.hostloc.com/*
    // ==/UserScript==

    (function() {
        'use strict';

        for(var stylesheet of document.styleSheets){
        if(stylesheet.ownerNode.id ==='diy_style'){
                    for(var i=stylesheet.cssRules.length-1;i>=0 ;i--){
                            stylesheet.deleteRule(i);
                    }
                    break;
            }
    }
    })();

QingJ © 2025

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