Greasy Fork is available in English.
try to take over the world :)
当前为
// ==UserScript==
// @name Zibzab's GameDox/Rom Upload Helper
// @namespace http://tampermonkey.net/
// @version 1.0
// @description try to take over the world :)
// @author BestGrapeLeaves
// @match https://gazellegames.net/upload.php?groupid=*
// @icon https://i.imgur.com/UFOk0Iu.png
// @grant none
// @license MIT
// ==/UserScript==
const GAME_DOX_INSERT = `[align=center] pdf pages
[/align]
`;
const ROM_INSERT = `[align=center]xxx matches [url=xxx]No-Intro checksum[/url]
Compressed with [url=https://sourceforge.net/projects/trrntzip/]torrentzip.[/url][/align]
`;
(function () {
"use strict";
$("select#miscellaneous").change(function () {
const selected = $("select#miscellaneous option:selected").text();
if (selected === "GameDOX") {
$("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
);
} else if (selected === "ROM") {
$("textarea#release_desc").val(
$("textarea#release_desc").val() + ROM_INSERT
);
}
});
})();