// ==UserScript== // @name RYM: Advanced collection view widget // @namespace https://rateyourmusic.com/~pandrew // @version 0.6 // @description custom filters for viewing music collections // @match https://rateyourmusic.com/~* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @copyright 2014+, pandy butternubs // @downloadURL none // ==/UserScript== widget = '
show/hide widget
' // rating selector widget += 'Rating: ' widget += ratings widget += ' to ' widget += '' // number per page widget += ' | Items per page: ' // view type widget += '

View style: ' widget += '' // release type widget += ' | Release type: ' widget += '' // search terms widget += ' | Search terms: ' widget += '' // end widget += '


' music_header = 'music' // $('.bubble_header:contains("'+music_header+'")').after(widget) $('a[href="/collection/'+document.URL.split('~')[1]+'/"]').parent().after(widget); // https://rateyourmusic.com/collection// // https://rateyourmusic.com/collection//strm_,//1 $('#toggle-widget').bind('click', function(){$('#music-widget').toggle()}) $('#music-widget').toggle() $('#gobtn').bind('click', function(){ username = document.URL.split('~')[1] options = '' if ($('#perpage').val() != '' && !isNaN($('#perpage').val())){ options += ',n'+$('#perpage').val(); } if ($('#rlstype').val() != 'none'){ options += ','+$('#rlstype').val(); } if ($('#ratemin').val() != 'none' || $('#ratemax').val() != 'none'){ rating = [$('#ratemin').val(), $('#ratemax').val()] rating.sort() options += ',r'+rating[0] if (rating[1] != 'none' && rating[1] != rating[0]){ options += '-'+rating[1]; } } if ($('#ownship').val() != 'none'){ options += ','+$('#ownship').val(); } if ($('#srchquery').val() != ''){ if ($('#viewtype').val() != 'none'){ viewtype = $('#viewtype').val()+','; } else {viewtype = ''} window.location = 'https://rateyourmusic.com/collection/'+username+'/'+viewtype+'strm_'+$('#srchtype').val()+','+options+'/'+$('#srchquery').val()+'/1' } else{ if ($('#viewtype').val() != 'none'){ options = $('#viewtype').val() + options; } window.location = 'https://rateyourmusic.com/collection/'+username+'/'+options } })