微博还原灰色滤镜

还原微博灰色滤镜

// ==UserScript==
// @name         微博还原灰色滤镜
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  还原微博灰色滤镜
// @author       SamWise
// @match        https://weibo.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=weibo.com
// @grant        none
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';
    const styles = `.grayTheme {filter: none!important;}`;

    var styleSheet = document.createElement("style");
    styleSheet.innerText = styles;
    document.head.appendChild(styleSheet);

})();

QingJ © 2025

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