khs.kr / Block_linkprice_ppomppu

// ==UserScript==
// @name         Block_linkprice_ppomppu
// @namespace    http://ppomppu.co.kr
// @version      0.3
// @description  enter something useful
// @author       khs.kr
// @match        http://www.ppomppu.co.kr/*
// @grant        none
// ==/UserScript==

$(document).ready(function() {
   removeBlock();
   setTimeout(removeBlock, 1000);
});
function removeBlock(){
    var link = $('td.han a, table.info_bg td div.han a' );
   link.each(function() {
      if($(this).attr('href').indexOf('s.ppomppu.co.kr') >= 0) {
          $(this).attr('href', $(this).text());
      } 
   });
}