Skip to content

Instantly share code, notes, and snippets.

@mov-ebx
Last active February 8, 2023 02:21
Show Gist options
  • Save mov-ebx/683f20d8924ef14852d2545776579667 to your computer and use it in GitHub Desktop.
Save mov-ebx/683f20d8924ef14852d2545776579667 to your computer and use it in GitHub Desktop.
Allows for unlimited daily saves on the Pixlr online image editor!
// ==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