fuck grayscale

移除网页公祭日效果

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         fuck grayscale
// @namespace    color
// @version      1.0
// @description  移除网页公祭日效果
// @author       ckpro
// @license      GPL-3.0-or-later
// @match        *://*/*
// @grant        none
// @run-at       document-body
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByTagName("body")[0].style.cssText="-webkit-filter:grayscale(0%) !important; -moz-filter:grayscale(0%) !important;  -ms-filter:grayscale(0%) !important;"+
        " -o-filter:grayscale(0%) !important;  filter:grayscale(0%) !important;  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0) !important; -webkit-filter:grayscale(0) !important;";
    document.getElementsByTagName("head")[0].style.cssText="-webkit-filter:grayscale(0%) !important; -moz-filter:grayscale(0%) !important;  -ms-filter:grayscale(0%) !important;"+
        " -o-filter:grayscale(0%) !important;  filter:grayscale(0%) !important;  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0) !important; -webkit-filter:grayscale(0) !important;";
    document.getElementsByTagName("html")[0].style.cssText="-webkit-filter:grayscale(0%) !important; -moz-filter:grayscale(0%) !important;  -ms-filter:grayscale(0%) !important;"+
        " -o-filter:grayscale(0%) !important;  filter:grayscale(0%) !important;  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0) !important; -webkit-filter:grayscale(0) !important;";
})();