Auto close photobucket's popup自动关闭photobucket广告弹窗

自动关闭photobucket弹窗Auto close photobucket's advertisement popup

目前為 2018-05-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Auto close photobucket's popup自动关闭photobucket广告弹窗
// @namespace   [email protected]
// @version      0.1
// @description  自动关闭photobucket弹窗Auto close photobucket's advertisement popup
// @author       WWW.NTRSN.CN
// @match        http://s50.photobucket.com/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';

    // Your code here...
    window.onload=function()
    {
        if(document.getElementById('myModal').style.visibility!=="hidden")
        {
            document.getElementById('myModal').style.visibility="hidden";
        }
    };
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址