-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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