您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto clicks on the Confirm and Upload button on Imgur.
当前为
// ==UserScript== // @name Confirm and Upload - Imgur // @namespace ConfirmandUpload // @version 0.2 // @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://gf.zukizuki.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 })();