您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
try to take over the world :)
当前为
// ==UserScript== // @name GGn PTPImg All // @namespace http://tampermonkey.net/ // @version 1.0 // @description try to take over the world :) // @author BestGrapeLeaves // @match https://gazellegames.net/upload.php* // @icon https://cdn.dribbble.com/users/791530/screenshots/14040547/06-palette-2_fluent-1_4x.jpg // @license MIT // ==/UserScript== (function() { 'use strict'; const button = $('<input type="button" value="PTPImg All"/>'); button.click(() => { $('input[type="button"][value="PTPImg It"]').each(function() { if(!$(this).parent().find('input').first().val()) { return; } $(this).raw().onclick(); }); }); $('#image_block').prepend(button, '<br>'); })();