Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markstinson/21f5e313004795f34632d2ede10b2c5b to your computer and use it in GitHub Desktop.
Save markstinson/21f5e313004795f34632d2ede10b2c5b 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/markstinson/21f5e313004795f34632d2ede10b2c5b/raw
// @downloadURL https://gist.githubusercontent.com/markstinson/21f5e313004795f34632d2ede10b2c5b/raw
// @grant none
// @version 1.1.1
// ==/UserScript==
// update with your username/checksum
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