Guest User

Untitled

a guest
Feb 16th, 2024
1,646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Multiup Torrent Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Enable the upload button on MultiUp.org
  6. // @author Noodles
  7. // @match https://multiup.io/en/upload/from-torrent
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // removes the disabled attribute from the button
  15. document.querySelector('button[type="submit"][disabled]').removeAttribute('disabled');
  16.  
  17. // adds the enabled attribute to the button
  18. document.querySelector('button[type="submit"]').setAttribute('enabled', '');
  19. })();
Add Comment
Please, Sign In to add comment