Greasy Fork is available in English.

Confirm and Upload - Imgur

Auto clicks on the Confirm and Upload button on Imgur.

스크립트 설치?
개발자의 추천 스크립트

Auto Set Youtube Volume는 어떤가요?

스크립트 설치
질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Confirm and Upload - Imgur
// @namespace    ConfirmandUpload
// @version      5
// @description  Auto clicks on the Confirm and Upload button on Imgur.
// @author       hacker09
// @match        https://imgur.com/*
// @icon         https://t0.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://imgur.com/upload&size=64
// @require      https://update.greasyfork.org/scripts/519092/arrivejs%20%28Latest%29.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
})();