- 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:
Copy and pasta the script into your userscript extension of choice and save.
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.