Last active
February 8, 2023 02:21
-
-
Save mov-ebx/683f20d8924ef14852d2545776579667 to your computer and use it in GitHub Desktop.
Allows for unlimited daily saves on the Pixlr online image editor!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Pixlr unlimited daily saves | |
// @description Allows for unlimited daily saves on the Pixlr online image editor! | |
// @match https://pixlr.com/* | |
// @version 1.0 | |
// @author mov-ebx | |
// ==/UserScript== | |
let settings = JSON.parse(localStorage.getItem('user-settings')); | |
localStorage.setItem('user-settings', JSON.stringify({ | |
...settings, | |
dailySave: { | |
...settings.dailySave, | |
tally: -999, | |
}, | |
})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment