NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name UnPixlr
// @version 1.1
// @description Unlimited Pixlr Saves
// @author AceSilentKill
// @license ISC
// @match https://pixlr.com/*
// @icon https://pixlr.com/favicon-32x32.png
// @updateURL https://openuserjs.org/meta/AceSilentkill/UnPixlr.meta.js
// @downloadURL https://openuserjs.org/install/AceSilentkill/UnPixlr.user.js
// @grant unsafeWindow
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
unsafeWindow.addEventListener('load', function () {
localStorage.setItem('user-settings', '{"lastNewsCheck":"1969-12-31T01:01:01.900Z","dailySave":{"day":1,"tally":1}}');
setTimeout(function () {
const modal = document.getElementsByClassName('modal')[0];
if (modal) modal.remove();
}, 500);
GM_addStyle('#right-space { display: none !important; visibility: hidden !important; }');
});