您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A GGn user script to help with GameDox uploading
// ==UserScript== // @name GGn GameDox Upload Helper // @description A GGn user script to help with GameDox uploading // @namespace http://tampermonkey.net/ // @version 1.0.0 // @author BestGrapeLeaves // @license MIT // @match https://gazellegames.net/upload.php?groupid=* // @icon https://i.imgur.com/UFOk0Iu.png // ==/UserScript== (function() { 'use strict'; const GAME_DOX_INSERT = `[align=center] pdf pages [/align]`; $("select#miscellaneous").change(function () { const selected = $("select#miscellaneous option:selected").text(); if (selected === "GameDOX") { $("input#release_title").val( $("input#release_title").val() + " - Manual" ); $("select#gamedox").val("Guide").change(); $("select#format").val("PDF").change(); $("input#scan").click(); Scan(); $("textarea#release_desc").val( $("textarea#release_desc").val() + GAME_DOX_INSERT ); } }); })();