Photopea Ad Sidebar Remove

Removes the ad sidebar in photopea, which appears even if you have an adblocker.

  1. // ==UserScript==
  2. // @name Photopea Ad Sidebar Remove
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-05-29
  5. // @description Removes the ad sidebar in photopea, which appears even if you have an adblocker.
  6. // @author You
  7. // @match https://www.photopea.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=photopea.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. Object.defineProperty(window, 'innerWidth', {
  16. get() { return document.documentElement.offsetWidth + 320 },
  17. })
  18. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址