Sleazy Fork is available in English.

禁止小草检测abp及其他广告清理

小草站会检测abp,并且贴子内容的广告非常不好清除。\r\n比如 第六天魔王 发的贴子,内容中非常多的广告。\r\n可能随时会更新代码。

Ekde 2018/12/19. Vidu La ĝisdata versio.

// ==UserScript==
// @name 禁止小草检测abp及其他广告清理
// @namespace Violentmonkey Scripts
// @include     http*://*t66y.com/*
// @include     http*://需要指定域名的请在此增加*
// @grant none
// @version 0.0.1.20181219062232
// @description 小草站会检测abp,并且贴子内容的广告非常不好清除。\r\n比如 第六天魔王 发的贴子,内容中非常多的广告。\r\n可能随时会更新代码。
// ==/UserScript==
spinit = function(){};
(function() {
  readS1= null;
  readS= null;
  r1eadS = null;
  adhtml = null;
  
  $(".tpc_content iframe").remove();
  
  var _keywords = ["【影片名稱】","種子連結","MP4"];
  var _keywords_in = false;
  
  var ttt_html = $(".tpc_content").eq(0).html();
  $.each(_keywords,function(i, _n){
    var ttt = ttt_html.split(_n);
    if( typeof(ttt[1]) != "undefined"){
      _keywords_in = true;
      ttt[0] = "";
      $(".tpc_content").eq(0).html(ttt.join(_n).replace(/(<br\s?\/?>)+/gi, '$1').replace(/(<br\s?\/?>\s?&nbsp;)+/gi, '$1'));
    }
  });

  $(".tpc_content:eq(0) a").each(function(i){
    if( $(this).text().indexOf("以下內容被隱藏") != -1){
      $(this).remove();
    }
  });  
})();