Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name HUGES BUTTON
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description big huge buttons
- // @author playvora
- // @match https://fluxteam.net/android/checkpoint/main.php
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- let copyKeyButton = document.querySelector('body > main > div > a > button:nth-child(2)');
- if(copyKeyButton) {
- // increase the button size like your balls
- copyKeyButton.style.fontSize = '300px';
- copyKeyButton.style.padding = '150px 300px';
- copyKeyButton.click();
- } else {
- console.error('why you read');
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement