// ==UserScript== // @name 후잉 hide figures // @namespace http://tampermonkey.net/ // @version 0.1 // @description 후잉 숫자를 가려드립니다. // @author Robert Park // @match https://whooing.com/ // @match https://new.whooing.com/ // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... $.noConflict(); jQuery( document ).ready(function( $ ) { setInterval(function(){ function do_mask(idx, elem){ var text = $(elem).text(); if (text.match(/^[ ]*[+-▲▼]? ?([0-9]{1,3}[,.경조억만천]?)+[kmg%]?[ ]*$/i)) { $(elem).text(text.replace(/[0-9]/g, '#')); } }; $('*:not(:has(*))').each(do_mask); $('*').each(do_mask); }, 10); }); })();