Advertisement
Jimmie1717

Userscript: Disable Auto Verify

Mar 10th, 2019
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Disable Mod Auto Verify
  3. // @version      0.1
  4. // @namespace    http://www.speedrun.com/
  5. // @description  Automatically disables the Auto Verify box for moderators.
  6. // @author       Jimmie1717
  7. // @match        https://www.speedrun.com/*/editrun*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.     document.getElementById('autoverify').checked=false;
  14. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement