您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Default values into the Completionator bulk import form, for weekly free Epic Games Store games.
// ==UserScript== // @name Completionator - Default Epic Games // @namespace https://github.com/theborg3of5/Userscripts/ // @version 1.2 // @description Default values into the Completionator bulk import form, for weekly free Epic Games Store games. // @author Gavin Borg // @match https://*.completionator.com/Collection/BulkImport // ==/UserScript== document.querySelector("#ddlPlatform").value = 32; // Platform = PC / Windows document.querySelector("#ddlPlatform").dispatchEvent(new Event("change")) // Trigger changed event so following fields populate appropriately document.querySelector("#rdoDigital").click(); // Format = Digital, click instead of setting value so it makes other fields appear correctly document.querySelector("#IsBacklog").checked = true; // Add imported games to my backlog = checked // The above fields show and populate the format dropdown window.setTimeout(function() { document.querySelector("#ddlDigitalFormatProvider").value = 1028; // Digital Format = Epic Games Store }, 1000);