Delete Forbes' "We see you're using an ad blocker." modal.
当前为
// ==UserScript==
// @name Forbes Unlimited
// @namespace https://greasyfork.org/
// @version 0.30
// @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==
(function() {
'use strict';
document.body.className = document.body.className.replace("adblock-on tp-modal-open","");
var modals = document.getElementsByClassName("tp-modal");
while (modals.length > 0) modals[0].remove();
var backdrops = document.getElementsByClassName("tp-backdrop");
while (backdrops.length > 0) backdrops[0].remove();
})();