Forbes Unlimited

Delete Forbes' "We see you're using an ad blocker." modal.

目前为 2022-03-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         Forbes Unlimited
// @namespace    https://greasyfork.org/
// @version      0.10
// @description  Delete Forbes' "We see you're using an ad blocker." modal.
// @author       xamilaf781
// @license      MIT
// @match        https://forbes.com/@*
// @match        https://*.forbes.com/*
// ==/UserScript==

var time=setInterval(function(){
  document.body.className = document.body.className.replace("adblock-on tp-modal-open","");
  document.getElementsByClassName("tp-modal")[0].remove();
  document.getElementsByClassName("tp-backdrop")[0].remove();
},500);