Greasy Fork

来自缓存

Pcbeta 去除广告屏蔽弹窗

远景论坛去除广告屏蔽弹窗

// ==UserScript==
// @name         Pcbeta 去除广告屏蔽弹窗
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  远景论坛去除广告屏蔽弹窗
// @author       萌萌哒の小妍妍
// @match        *://*.pcbeta.com/*
// @icon         https://bbs.pcbeta.com/favicon.png
// @grant        none
// ==/UserScript==

(window.onload=function() {
    'use strict';
    var popup=document.getElementById("append_parent");
    document.getElementById("fwin_dialog_submit").click();
    //popup.style.display = "none";
    window.alert = function(str){
return;
}
    // Your code here...
})();