Skip to content

Instantly share code, notes, and snippets.

@diceroll123
Created September 15, 2020 07:22
Show Gist options
  • Save diceroll123/5ac6ab27bb372a53f7e84e1d6c6b4bab to your computer and use it in GitHub Desktop.
Save diceroll123/5ac6ab27bb372a53f7e84e1d6c6b4bab to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name CC Select All
// @version 1.0
// @description Auto-selects last 15 items
// @author diceroll123
// @match http://www.neopets.com/charitycorner/2020/quickdonation/itemdiscardchecklist.phtml*
// ==/UserScript==
(function() {
'use strict';
$('input[type=checkbox].ccrbutton').slice(-15).attr('checked', 'checked');
$("#liveWithoutThis, #startOver, #takeToAtsumi").attr("disabled", false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment