Greasy Fork is available in English.
反巴哈/動畫瘋反反廣告的提示
当前为
// ==UserScript==
// @name Anti Anti Anti Ad
// @description 反巴哈/動畫瘋反反廣告的提示
// @namespace https://github.com/FlandreDaisuki
// @author FlandreDaisuki
// @include https://*gamer.com.tw/*
// @version 0.5
// @run-at document-start
// @grant none
// ==/UserScript==
/* 可以讓已經包月的人不要看到這個嘛 森77 */
//動畫瘋 alert
const f = window.alert;
window.alert = console.info;
setTimeout(() => {
window.alert = f;
},5000);
//全站黃警告
if (localStorage.admercyblocks) {
localStorage.admercyblocks = Infinity;
}
document.onreadystatechange = function () {
if (document.readyState === 'interactive') {
const a = document.querySelector('.alert-close');
if (a) {
a.parentElement.remove();
}
}
}