您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
以脱了裤子放屁的温柔方式提醒saraba1st.com/2b用户关闭广告屏蔽插件
当前为
// ==UserScript== // @name Non-blocking S1 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 以脱了裤子放屁的温柔方式提醒saraba1st.com/2b用户关闭广告屏蔽插件 // @author ownstars // @match https://*.saraba1st.com/* // @grant none // @run-at document-start // ==/UserScript== (function() { 'use strict'; window.alert = function(msg) { var box = document.createElement('div'); box.id = "nonblockingpop"; box.innerHTML=msg; box.style.float = 'right'; box.style.position = 'fixed'; box.style.background = '#d7dec7 none repeat scroll 0% 0%'; box.style.opacity = '0.85'; box.style.padding = '10px'; box.style.top = '3em'; box.style.right = '1em'; document.body.appendChild(box); setTimeout(function(){ var box = document.getElementById('nonblockingpop'); box.parentElement.removeChild(box); }, 2000); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址