Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Discogs sort by price + shipping
- // @namespace https://rAthus.com
- // @version 2025-03-10
- // @description try to take over the world!
- // @author You
- // @match https://www.discogs.com/sell/release/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=discogs.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- $(document).ready(function() {
- setTimeout(function() {
- var $wrapper = $('table.mpitems');
- $wrapper.find('.shortcut_navigable ').sort(function(a,b) {
- var v1 = ($(a).find('.item_price .converted_price').text()||'').split('€')[1].split(' ')[0]*1||0;
- var v2 = ($(b).find('.item_price .converted_price').text()||'').split('€')[1].split(' ')[0]*1||0;
- return v1-v2;
- }).appendTo($wrapper);
- $wrapper.find('.price_header .link-text').html('Price + Shipping');
- },1000);
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement