您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the ad sidebar and image download limit from pixlr.
// ==UserScript== // @name No pixlr ads // @namespace https://github.com/PixelMelt // @version 0.4 // @description Remove the ad sidebar and image download limit from pixlr. // @author Pix#7008 // @match https://pixlr.com/e/ // @icon https://www.google.com/s2/favicons?domain=pixlr.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function removead(){ localStorage['user-settings'] = '{"lastNewsCheck":"2023-08-10T00:48:05.787Z"}' if(window.location.href == `https://pixlr.com/e/#editor`){ document.getElementById(`workspace`).style.right = `0` if(document.getElementById(`iasriiigh`)){ document.getElementById(`iasriiigh`).remove() document.getElementById(`right-space`).remove() console.log(`deleted sidebar`) } if(document.getElementById(`modal-pop`)){ document.getElementById(`modal-pop`).remove() console.log(`deleted pop up`) } if(document.getElementById(`modal-5488a20440ea`)){ document.getElementById(`modal-5488a20440ea`).remove() console.log(`deleted pop up blur`) } } setTimeout(removead, 1000); } removead() })();