Skip to content

Instantly share code, notes, and snippets.

@liach
Forked from Vazkii/hidefabric.js
Last active November 8, 2019 09:44
Show Gist options
  • Save liach/dc7b00d7db64e710140365d88c221c45 to your computer and use it in GitHub Desktop.
Save liach/dc7b00d7db64e710140365d88c221c45 to your computer and use it in GitHub Desktop.
Userscript to hide forge mods (use with Tampermonkey or any other userscript plugin)
// ==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('a[href="/minecraft/mc-mods?filter-game-version=2020709689%3A7498"]').length > 0)
$(this).hide();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment