您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide the lower Adalo banner when accessing the app.
// ==UserScript== // @name Hide Adalo banner // @namespace StephenP // @exclude https://www.adalo.com/* // @exclude https://app.adalo.com/* // @exclude https://previewer.adalo.com/* // @exclude https://help.adalo.com/* // @exclude https://appacademy.adalo.com/* // @exclude https://info.adalo.com // @match https://*.adalo.com/* // @grant none // @version 1.0 // @author StephenP // @license copyleft // @description Hide the lower Adalo banner when accessing the app. // ==/UserScript== var st=document.createElement("STYLE"); st.innerHTML=".web-runtime-footer{display: none};"; document.getElementsByTagName("HEAD")[0].appendChild(st); let itv=setInterval(removeMargin,500); function removeMargin(){ let app=document.querySelector(".app"); if(app){ if(app.firstChild.style.marginBottom!==""){ app.firstChild.style.marginBottom="0"; clearInterval(itv); } } }