干掉买动漫的代购

屏蔽那些在虎穴甜瓜上乱刷商品的无良抱枕社团

Version vom 02.11.2019. Aktuellste Version

// ==UserScript==
// @name            干掉买动漫的代购
// @namespace       http://weibo.com/myimagination
// @author          @MyImagination
// @version			0.32
// @description     屏蔽那些在虎穴甜瓜上乱刷商品的无良抱枕社团
// @include         https://www.myacg.com.tw/goods_list.php*
// @require         http://libs.baidu.com/jquery/1.7.2/jquery.min.js
// @run-at          document-end
// @grant           none
// ==/UserScript==
(function () {
    timer = setTimeout(onSub, 3000);    
}) ();
function onSub() {
  var myacg = "div.name a";
      $('.gs_typeBox div.title').click(function () {
          $(myacg).each(function () {
    if ($(this).text() == '代購' || $(this).text() == 'eb') {
//    if ($(this).text() == '代購' || $(this).text() == 'eb') {
      $(this).closest('li').remove(); //myacg
//    $(this).closest('div.product.clearfix').remove(); //melonbooks
    }
  });
  });
}