Userscript to disable the black-and-white shit - Why?

Status
Not open for further replies.

Pope John Paul II

𒐫𒐫𒐫𒐫𒐫𒐫
kiwifarms.net
Joined
Jun 12, 2021
Because for some reason Null thought putting a grayscale filter over the whole page was a good idea, here's a userscript I whipped out in about 2 minutes:

JavaScript:
// ==UserScript==
// @name         No KiwiFarms grayscale filter
// @namespace    https://kiwifarms.net/
// @version      21.37
// @author       Pope John Paul II
// @match        https://kiwifarms.net/**
// @icon         https://kiwifarms.net/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector(".p-pageWrapper").style.filter = "";
})();

Copy and pasta the script into your userscript extension of choice and save.
 
@version 21.37
smug kitten.png
 
I was literally just about to post my own. *sigh*

Good job anyway. I hope you get all of the goodboi stickers.

PS - For anyone who doesn't have Tampermonkey or some other userscript extension, you can also just hit F12 (for Chromium-based browsers at least) and copy/paste the relevant
Code:
(function() {
    'use strict';
    document.querySelector(".p-pageWrapper").style.filter = "";
})();
bit into the console and hit enter and it will do the same thing, though you will have to repeat it for every page you visit unless you set up a local override, though at that point I'd recommend just downloading Tampermonkey instead because it will be easier to deal with plus it's awesome.
 
Last edited:
Status
Not open for further replies.
Back