// ==UserScript== // @name Confirm and Upload - Imgur // @namespace ConfirmandUpload // @version 0.1 // @description Auto clicks on the Confirm and Upload button on Imgur. // @author hacker09 // @match https://imgur.com/* // @icon https://www.google.com/s2/favicons?domain=imgur.com/upload // @require https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.arrive('.TosConfirmationDialog-confirm--do', (async function() { //Creates a new async function document.querySelector('.TosConfirmationDialog-confirm--do').click(); Arrive.unbindAllArrive(); //Remove o advent listener arrive for better page performance })); //Finishes the async function })();