Guest User

CC Select All v2

a guest
Sep 15th, 2020
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         CC Select All
  3. // @version      1.0
  4. // @description  Auto-selects last 15 items
  5. // @author       diceroll123
  6. // @match        http://www.neopets.com/charitycorner/2020/quickdonation/itemdiscardchecklist.phtml*
  7. // @require      http://code.jquery.com/jquery-latest.js
  8. // ==/UserScript==
  9.  
  10. (function() {
  11.     'use strict';
  12.     $('input[type=checkbox].ccrbutton').slice(-15).attr('checked', 'checked');
  13.     $("#liveWithoutThis, #startOver, #takeToAtsumi").attr("disabled", false);
  14. })();
Add Comment
Please, Sign In to add comment