Greasy Fork is available in English.

BusinessInsider Adblock Blocker

Get rid of BusinessInsiders adblock blocker

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         BusinessInsider Adblock Blocker
// @namespace    https://greasyfork.org/
// @version      0.1
// @description  Get rid of BusinessInsiders adblock blocker
// @author       Josh Hubbard
// @match        https://businessinsider.com/@*
// @match        https://*.businessinsider.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js 
// ==/UserScript==

time=setInterval(function(){
  $("body").removeClass("tp-modal-open");
  $(".tp-modal, .tp-backdrop").remove();
},500);