您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Made by Breskott to disappear with boring message
// ==UserScript== // @name Configr disable free message // @namespace https://breskott.com.br/ // @version 0.1 // @site https://www.breskott.com.br/ // @github https://github.com/breskott // @description Made by Breskott to disappear with boring message // @author Breskott's Software House // @match https://cloud.configr.com/dashboard // @include http*://*.configr.com/* // @include http*://configr.com/* // @grant GM_webRequest // @grant GM_xmlhttpRequest // @grant GM_deleteValue // @grant GM_info // @grant GM_getMetadata // @run-at document-start // ==/UserScript== // Wait page window.addEventListener('load', function() { // Verified tag if(document.getElementsByTagName("app-subnavbar")){ var elements = document.getElementsByTagName('app-subnavbar'); // remove tag while(elements.length > 0){ elements[0].parentNode.removeChild(elements[0]); } } }, false);