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

Status
Not open for further replies.
Reject gay colors, embrace tradition.View attachment 3340380
If you want gay colors, I'll give ya gay colors.
JavaScript:
// ==UserScript==
// @name         KiwiFarms Pride Month
// @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';
    const root = document.querySelector(".p-pageWrapper");
    let hue = 0;

    const update = () => {
        hue = (hue + 4) % 360;
        root.style.filter = `hue-rotate(${hue}deg) saturate(2)`;
        requestAnimationFrame(update);
    }

    requestAnimationFrame(update);
})();
 
do you have one that works for ABP style filters? I assume you could just paste what you have in
 
If you want gay colors, I'll give ya gay colors.
JavaScript:
// ==UserScript==
// @name         KiwiFarms Pride Month
// @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';
    const root = document.querySelector(".p-pageWrapper");
    let hue = 0;

    const update = () => {
        hue = (hue + 4) % 360;
        root.style.filter = `hue-rotate(${hue}deg) saturate(2)`;
        requestAnimationFrame(update);
    }

    requestAnimationFrame(update);
})();
Okay now I think the B&W filter wasn't the worst.
Anyway, ctrl+shift+J in Brave, MacFags would use command key.
(Will have to do this every time you change/refresh the page without a plugin).
 
  • Informative
Reactions: Pissmaster
Thank you, kind Pope.
Screenshot 2022-05-31 185022.png
 
Status
Not open for further replies.
Back