Skip to content

Instantly share code, notes, and snippets.

@mikemanger
Last active December 6, 2016 03:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mikemanger/71334947a6f7470ef16e to your computer and use it in GitHub Desktop.
Save mikemanger/71334947a6f7470ef16e to your computer and use it in GitHub Desktop.
Hides bundles you don't own from your Indie Royale collection page
// ==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