Annoying Ad blocker 18+

Prevents annoying ads from displaying 18+

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Annoying Ad blocker 18+
// @description Prevents annoying ads from displaying 18+
// @version     2017.09.43
// @include     *://*.thepiratebay.org/*
// @include     *://*.pornhub.com/*
// @include     *://*.camwhores.tv/*
// @include     *://*.chaturbate.com/*
// @include     *://chaturbate.com/*
// @include     *://*.vporn.com/*
// @include     *://*.cam4.com/*
// @include     *://*.bongacams.com/*
// @namespace   https://openuserjs.org/users/nonedude
// @require     http://code.jquery.com/jquery-1.11.1.min.js
// @license MIT
// ==/UserScript==

var counter = 0;

String.prototype.contains = function (it) {
  return this.indexOf(it) != -1;
};

var ssss = location.href;

function pornhub() {
  $("iframe").each(function () {
    $(this).remove();
  });

  $(".streamatesModelsContainer").remove();
  $(".js_adblockPremium").remove();
  $(".premiumPromoBanner").remove();
  $(".js-abContainterMain").remove();
}

function camwhores() {
  delete window.TotemToolsObject;

  loadTool = function () {};
  e = function () {};
  t = function () {};
  o = function () {};
  t = function () {};
  $("iframe").remove();
  $(".topad").remove();
  $(".row-models").remove();
  $(".list-live-models").remove();
  $("#videos-ad").remove();

  d9g = "";
  p9b0g = "";
  r3H4 = "";
  _0x9f02 = [];
  f = function () {};
  i = function () {};
  a = function () {};
  u = function () {};
  v = function () {};
  n = function () {};
  h = function () {};
  l = function () {};
  d = function () {};
  H = function () {};
  k = function () {};
  g = function () {};

  $(".fp-ui div:first-child").remove();
  $("div.adv").remove();
  $("canvas").each(function () {
    $(this).remove();
  });
  $("script").each(function () {
    $(this).html("vvvvvvv");
    $(this).attr("src", "localhost");
  });
  //$("input[namee='q']").prop('disabled', true);

}

function chaturbate() {
  $(".adsbyxa").remove();
  $(".ad").remove();
  $(".banner").remove();
  $(".content, #tabs_content_container, .chat-holder, .bio-container").css("background-color", "gray");
  $('.bio-container').css("max-height", "500px").css("overflow-y", "scroll");
}

function vporn() {
  $("#red-adv").remove();
  $("#video-fivesec-banner").remove();
  $("#video-advert").remove();
  $(".adholder").remove();

  $("iframe").each(function () {
    $(this).remove();
  });
}

function spankbang() {
  $(".ttaa").remove();
  $(".user_panel_guest").remove();
}

function cam4() {
    $(".acceptCookieConsent").click();
    $("input[id$='cookieConsent_consentCookieBtn']")
    $("#PrimaryDialogContainer").delete();
    $("#videoBannerMidrollAdWrapper").delete();
    $("#boost").delete();

}


function bongacams() {
    console.log("Running bongacams");
    $(".__give_away").click();
    //$("input[id$='cookieConsent_consentCookieBtn']")
    //$("#PrimaryDialogContainer").delete();
    //$("#videoBannerMidrollAdWrapper").delete();
    $(".boost").delete();

}


if (ssss.contains("pornhub") || ssss.contains("redtube") || ssss.contains("youporn")) {
  pornhub();
  window.setInterval(function () {
    if (counter < 10)
      pornhub();
    counter++;
  }, 500);

}
if (ssss.contains("camwhores")) {
  camwhores();
  window.setInterval(function () {
    if (counter < 10)
      camwhores();
    counter++;
  }, 500);
}

if (ssss.contains("spankbang")) {
  spankbang();
  window.setInterval(function () {
    if (counter < 10)
      spankbang();
    counter++;
  }, 500);
}

if (ssss.contains("chaturbate")) {
  chaturbate();
  window.setInterval(function () {
    if (counter < 10)
      chaturbate();
    counter++;
  }, 500);
}

if (ssss.contains("vporn")) {
  vporn();
  window.setInterval(function () {
    if (counter < 10)
      vporn();
    counter++;
  }, 500);
}

if (ssss.contains("cam4")) {
  cam4();
  window.setInterval(function () {
    //if (counter < 10)
      cam4();
    //counter++;
  }, 1500);
}


if (ssss.contains("bongacams")) {
  bongacams();
  window.setInterval(function () {
    //if (counter < 10)
      bongacams();
    //counter++;
  }, 1500);
}