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);
}
}
}
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址