Greasy Fork

Greasy Fork is available in English.

去灰色脚本

黑白网页恢复彩色,匹配所有网页,即装即用

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         去灰色脚本
// @namespace    http://tampermonkey.net/
// @description  黑白网页恢复彩色,匹配所有网页,即装即用
// @author       fuce
// @license MIT
// @version      1.2
// @match        https://*/*
// @match        http://*/*
// @require      https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// ==/UserScript==


// 添加 css 样式
function addStyle() {
    let css = `
    html{
       filter: grayscale(0%) !important;
       -webkit-filter: grayscale(0%) !important;
       -moz-filter: grayscale(0%) !important;
       -ms-filter: grayscale(0%) !important;
       -o-filter: grayscale(0%) !important;
    }

    body.big-event-gray #aging-tools-pc div[class^=item-wrap],body.big-event-gray #bottom_layer,body.big-event-gray #bottom_layer .tip-hover-panel,body.big-event-gray #form,body.big-event-gray #passport-login-pop,body.big-event-gray #s-hotsearch-wrapper,body.big-event-gray #s_content_1,body.big-event-gray #s_content_100,body.big-event-gray #s_menu_gurd,body.big-event-gray #s_side_wrapper,body.big-event-gray #u1,body.big-event-gray .advert-shrink,body.big-event-gray .bdlayer,body.big-event-gray .popup-advert,body.big-event-gray .s-ctner-menus .s-menu-item-underline,body.big-event-gray .s-menu-container,body.big-event-gray .s-news-rank-wrapper,body.big-event-gray .s-skin-container.skin-gray-event,body.big-event-gray .s-top-left-new.s-isindex-wrap,body.big-event-gray .under-searchbox-tips,body.big-event-gray div[class^=cards_pop] {
	filter: grayscale(0%) !important;
       -webkit-filter: grayscale(0%) !important;
       -moz-filter: grayscale(0%) !important;
       -ms-filter: grayscale(0%) !important;
       -o-filter: grayscale(0%) !important;
    }


    body.big-event-gray #head_wrapper .sam_search .s_btn, body.big-event-gray #su, body.big-event-gray .wrapper_new .s_btn_wr .s_btn {
background-color: #4e6ef2;
    }


    `

    GM_addStyle(css)
}

function baidu(){
    if(window.location.host.indexOf("baidu")!=-1){
       $("#lg img").each(function(each,a){
       $(a).attr("src",$(a).attr("src").replaceAll("_gray",""));
   });
    }
}
(function() {
    'use strict';

baidu();
setTimeout(function(){
addStyle();
    console.log("sssssssss");

},100)


})();