Auto clicks on the Confirm and Upload button on Imgur.
目前為
// ==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
// ==/UserScript==
(function() {
'use strict';
document.arrive('.TosConfirmationDialog-confirm--do', (async function() { //Creates a new async function
document.querySelector('.TosConfirmationDialog-confirm--do').click(); //Click on the Confirm and Upload button
Arrive.unbindAllArrive(); //Remove the advent listener arrive for better page performance
})); //Finishes the async function
})();