您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes all JavaScript alerts on kiwiexploits.com (This is an extention of Kiwi auto Key Gen)
// ==UserScript== // @name Remove Alerts on kiwiexploits.com [Extention] // @namespace http://tampermonkey.net/ // @version 0.1 // @description Removes all JavaScript alerts on kiwiexploits.com (This is an extention of Kiwi auto Key Gen) // @author Foch2803 // @match https://kiwiexploits.com/* // @icon https://avatars.githubusercontent.com/u/139727811?s=400&u=a73138b011a6f48b9eaad88da89aa9fedd35d6cf&v=4 // @icon64 https://avatars.githubusercontent.com/u/139727811?s=400&u=a73138b011a6f48b9eaad88da89aa9fedd35d6cf&v=4 // @grant none // ==/UserScript== (function() { 'use strict'; window.alert = function() {}; window.prompt = function() {}; window.confirm = function() { return true; }; const installButton = document.getElementById('install-button'); if (installButton) { const connectedText = document.createElement('p'); connectedText.textContent = 'Connected to Alert Remover'; connectedText.style.textAlign = 'center'; installButton.insertAdjacentElement('afterend', connectedText); installButton.remove(); setTimeout(() => { connectedText.style.opacity = '0'; connectedText.style.transition = 'opacity 0.5s ease'; setTimeout(() => { connectedText.remove(); }, 500); }, 3000); } })();