您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass loading ads from ad-powered text-to-image plugins on perchance.org.
// ==UserScript== // @name Fuck Ads, Perchance // @namespace http://tampermonkey.net/ // @version 1.1.0 // @description Bypass loading ads from ad-powered text-to-image plugins on perchance.org. // @author Teraskull // @match https://perchance.org/* // @icon https://static.wikia.nocookie.net/perchance/images/e/e6/Site-logo.png // @license GPLv3 // @run-at document-start // @grant none // ==/UserScript== // Information about how the ads load: // https://www.reddit.com/r/uBlockOrigin/comments/153ubcw/blocking_a_single_specific_script_out_of_several/ (function() { 'use strict'; window.addEventListener('message', (e) => { if (e.data.type === 'usingAdPoweredPlugin') { e.data.type = 'fuckYourAdPoweredPlugin'; } console.debug(e.data.type); }); })();