Greasy Fork is available in English.
拦截特定alert弹窗
当前为
// ==UserScript==
// @name 屏蔽漫蛙广告拦截检测弹窗
// @version 1.0
// @description 拦截特定alert弹窗
// @match ://*/*
// @grant none
// @run-at document-start
// @namespace http://greasyfork.icu/users/452911
// ==/UserScript==
(function() {
'use strict';
const nativeAlert = window.alert;
window.alert = function(msg) {
// 如果包含广告拦截相关文字,则静默拦截
if (typeof msg === 'string' && msg.includes('请关闭阻挡广告插件并使用官方推荐浏览器 Chrome , Edge , Safari')) {
console.log('拦截了广告检测弹窗');
return;
}
// 否则正常显示
return nativeAlert(msg);
};
})();