Advertisement
NoTextForSpeech

big button

Feb 24th, 2024 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // ==UserScript==
  2. // @name HUGES BUTTON
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description big huge buttons
  6. // @author playvora
  7. // @match https://fluxteam.net/android/checkpoint/main.php
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14.  
  15. let copyKeyButton = document.querySelector('body > main > div > a > button:nth-child(2)');
  16.  
  17.  
  18. if(copyKeyButton) {
  19. // increase the button size like your balls
  20. copyKeyButton.style.fontSize = '300px';
  21. copyKeyButton.style.padding = '150px 300px';
  22.  
  23. copyKeyButton.click();
  24. } else {
  25. console.error('why you read');
  26. }
  27. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement