// ==UserScript== // @name Photopea.com 去广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Photopea.com 去广告 https://zee.kim // @author Zee Kim // @match https://www.photopea.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { setTimeout(function(){ document.querySelector(".mainblock").style.flex=1; document.querySelector(".app>div").style.flex=1; document.querySelector(".app").removeChild(document.querySelector(".app > div:nth-child(2)")); document.querySelector(".fitem").parentNode.parentNode.removeChild(document.querySelector(".fitem").parentNode); document.querySelector(".fitem.bbtn").parentNode.removeChild(document.querySelector(".fitem.bbtn")); },300); })();