您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes that shit of warning that is annoying
// ==UserScript== // @name WARNING REMOVER // @namespace http://tampermonkey.net/ // @version 6.9 // @description Removes that shit of warning that is annoying // @author Wh1t3Bl4ckPT // @match scriptblox.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Define the HTML content you want to remove const targetHTML = '<cloudflare-app app="welcome-bar" data-style="prominent" style="z-index: 10000;"><alert-message><alert-message-content>If you get “server error” please use incognito mode in the meanwhile we work on this issue.<a class="alert-cta-button" target="_blank" href="https://support.google.com/accounts/answer/32050?hl=en&co=GENIE.Platform%3DDesktop">How to clear cache?</a></alert-message-content></alert-message></cloudflare-app>'; // Find and remove the specified HTML element function removeElement() { const elements = document.getElementsByTagName('cloudflare-app'); for (const element of elements) { if (element.outerHTML === targetHTML) { element.remove(); } } } // Run the removeElement function when the document is ready window.addEventListener('load', removeElement); })();