Removes the ad sidebar in photopea, which appears even if you have an adblocker.
当前为
// ==UserScript==
// @name Photopea Ad Sidebar Remove
// @namespace http://tampermonkey.net/
// @version 2024-05-29
// @description Removes the ad sidebar in photopea, which appears even if you have an adblocker.
// @author You
// @match https://www.photopea.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=photopea.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
Object.defineProperty(window, 'innerWidth', {
get() { return document.documentElement.offsetWidth + 320 },
})
})();