SexGameSluts — Who Will You Fuck First? Play Now!
x

Tool Script to remove (hide) ignored games from "Latest Games & Updates" page on f95zone site when you exceed your limits to hide

Letota

Newbie
Mar 9, 2019
25
21
126
A simple stupid script that removes ignored games from https://f95zone.to/sam/latest_alpha/, even if you exceed the formal limit of 1,000 ignored games (spoiler: if there are too many ignored games, only the most recently added ones are hidden, and this script translate "transparent" games into "hidden").

To install, install a browser extension like tampermokey and add this text to a new script:
JavaScript:
// ==UserScript==
// @name         Remove ignored threads
// @namespace    http://tampermonkey.net/
// @version      2025-09-04
// @description  Tralalelo tralala
// @match        https://f95zone.to/sam/latest_alpha/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=f95zone.to
// ==/UserScript==

(function() {
    'use strict';
    const removeIgnoredTiles = () => {
        document.querySelectorAll('.resource-tile.resource-tile_ignored').forEach(element => {
            element.remove();
        });
    };

    const observer = new MutationObserver((mutations) => {
        const hasNewNodes = mutations.some(mutation => mutation.addedNodes.length > 0);
        if (hasNewNodes) {
            removeIgnoredTiles();
        }
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

    removeIgnoredTiles();
})();
After this turn filter into transparent mode and that's all.

1761505903783.png

!!! This script does not automatically load other pages; if all threads on a page are ignored, the page will simply be blank. I didn't make things complicated because the devs are concerned about their site's performance, so let's be nice and not generate billions of requests per second.
 
Last edited: