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:
After this turn filter into transparent mode and that's all.
!!! 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.
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();
})();
!!! 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: