Skip to content

Instantly share code, notes, and snippets.

@ClockwerkKaiser
Forked from Vazkii/hidefabric.js
Last active August 13, 2021 21:46
Show Gist options
  • Save ClockwerkKaiser/69ce4a7027c9b2a5c0573d386532589a to your computer and use it in GitHub Desktop.
Save ClockwerkKaiser/69ce4a7027c9b2a5c0573d386532589a to your computer and use it in GitHub Desktop.
Userscript to hide fabric mods (use with Tampermonkey or any other userscript plugin) Fixed for the newer Curse site update.
// ==UserScript==
// @name Hide Fabric Mods
// @version 1.0
// @description Hides fabric mods from CurseForge
// @author Vazkii
// @match https://www.curseforge.com/minecraft/mc-mods*
// ==/UserScript==
(function() {
'use strict';
$('.project-listing-row').each(function(e) {
if($(this).find('figure[title="Fabric"]').length > 0)
$(this).hide();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment