您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
公主連結ID自動輸入
// ==UserScript== // @name so-net 遊戲ID自動輸入 for 公主連結 // @namespace https://github.com/Kutinging/svp.so-ne // @version 1.1 // @description 公主連結ID自動輸入 // @author ThanatosDi , S.Dot // @match http://www.svp.so-net.tw/ // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector("select#game_no").value = "SON009" document.querySelector("input#user_id").value="(遊戲UID)" document.querySelector("input#user_id").focus(); document.querySelector("input#vp_no").focus(); var form = document.getElementsByTagName('form')[0]; var label = document.createElement("div"); var span = (document.createElement("span")); span.className = 'f_size'; var t = document.createTextNode("► 4."); span.appendChild(t); var t2 = document.createTextNode("腳本開發人員 : ThanatosDi , S.Dot"); label.appendChild(span) label.appendChild(t2) form.insertBefore(label,document.getElementById('btn_conf')); })();