Confirm and Upload - Imgur

Auto clicks on the Confirm and Upload button on Imgur.

Od 23.07.2021.. Pogledajte najnovija verzija.

// ==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://greatest.deepsurf.us/scripts/21927-arrive-js/code/arrivejs.js
// @grant        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
})();