Last active
December 6, 2016 03:16
-
-
Save mikemanger/71334947a6f7470ef16e to your computer and use it in GitHub Desktop.
Hides bundles you don't own from your Indie Royale collection page
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 Indie Royale Bundle Hider | |
// @description Hides bundles you don't own from your collection page | |
// @include http://www.indieroyale.com/collection | |
// @updateURL https://gist.githubusercontent.com/ohmanger/71334947a6f7470ef16e/raw | |
// @downloadURL https://gist.githubusercontent.com/ohmanger/71334947a6f7470ef16e/raw | |
// @grant none | |
// @version 1.1.1 | |
// ==/UserScript== | |
if ( window.jQuery ) { | |
jQuery('.wantbundle').parent().remove(); | |
jQuery('.deal').removeClass('dealalt'); | |
jQuery('.deal:odd').addClass('dealalt'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment