// ==UserScript== // @name PoloMinorCoinRemover // @namespace http://hitoriblog.com/ // @version 0.1 // @description try to take over the world! // @author moyashi // @match https://poloniex.com/exchange* // @grant none // ==/UserScript== (function() { 'use strict'; var threshold = 1000; $("table#marketBTC tbody").on('DOMSubtreeModified propertychange', function() { $("tbody [data-url^=btc_]").each(function(){ if (parseFloat($(this).find(".volume.sorting_1").text()) < threshold) { this.remove(); } }); }); })();