您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
2022/12/01 09:39:29
// ==UserScript== // @name 恢复彩色样式-移除默哀 // @match *://*/* // @grant none // @version 1.0 // @author https://gist.github.com/LimeVista/3f67c95c68a79de647de02ceaeee40ee // @description 2022/12/01 09:39:29 // @namespace https://greasyfork.org/users/990466 // ==/UserScript== (function () { 'use strict'; document.body.style.filter = 'none'; document.getElementsByTagName('html')[0].style.filter = 'none'; document.getElementsByTagName('head')[0].style.filter = 'none'; // 干掉微博 const weiboThemeHtml = ".grayTheme {\n -webkit-filter: grayscale(100%);\n -moz-filter: grayscale(100%);\n" + " -ms-filter: grayscale(100%);\n -o-filter: grayscale(100%);\n filter: grayscale(100%);\n" + " filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);\n filter: gray;\n }" for (let weiboStyle of document.getElementsByTagName('style')) { if (weiboStyle.innerText === weiboThemeHtml) { weiboStyle.innerHTML = '' } } // 干掉百度 const baiduRegex = /https:\/\/www.baidu.com/; const windowUrl = window.location.href; if (windowUrl.match(baiduRegex)) { document.getElementById("s_lg_img").setAttribute("src", "https://www.baidu.com/img/flexible/logo/pc/index.png"); document.getElementById("su").style.setProperty("background-color", "#4e6ef2", "important"); } })();