您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动填充 CEAC NIV 表单并选择特定选项
// ==UserScript== // @name Auto Fill CEAC NIV // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动填充 CEAC NIV 表单并选择特定选项 // @author Bluefissure // @license MIT // @match https://ceac.state.gov/CEACStatTracker/Status.aspx?App=NIV* // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { const locationDropdown = document.getElementById('Location_Dropdown'); if (locationDropdown) { locationDropdown.value = 'GUZ'; } const visaCaseNumberInput = document.getElementById('Visa_Case_Number'); if (visaCaseNumberInput) { visaCaseNumberInput.value = '123456'; } const passportNumberInput = document.getElementById('Passport_Number'); if (passportNumberInput) { passportNumberInput.value = 'E98765432'; } const surnameInput = document.getElementById('Surname'); if (surnameInput) { surnameInput.value = 'ABCDE'; } }); })();