Greasy Fork is available in English.

Confirm and Upload - Imgur

Auto clicks on the Confirm and Upload button on Imgur.

Nainštalovať tento skript?
Autor skriptu navrhuje

Tiež sa vám môže páčiť Auto Set Youtube Volume.

Nainštalovať tento skript
  1. // ==UserScript==
  2. // @name Confirm and Upload - Imgur
  3. // @namespace ConfirmandUpload
  4. // @version 5
  5. // @description Auto clicks on the Confirm and Upload button on Imgur.
  6. // @author hacker09
  7. // @match https://imgur.com/*
  8. // @icon https://t0.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://imgur.com/upload&size=64
  9. // @require https://update.greatest.deepsurf.us/scripts/519092/arrivejs%20%28Latest%29.js
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.arrive('.TosConfirmationDialog-confirm--do', (async function() { //Creates a new async function
  16. document.querySelector('.TosConfirmationDialog-confirm--do').click(); //Click on the Confirm and Upload button
  17. Arrive.unbindAllArrive(); //Remove the advent listener arrive for better page performance
  18. })); //Finishes the async function
  19. })();