Forked from mikemanger/indieroyalebundlehider.user.js
Created
December 6, 2016 03:16
-
-
Save markstinson/21f5e313004795f34632d2ede10b2c5b 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/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