您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes it easier for 1Password to autocomplete SE OTP, per https://developer.1password.com/docs/web/compatible-website-design/
当前为
// ==UserScript== // @name Square Enix OTP autocomplete hint // @description Makes it easier for 1Password to autocomplete SE OTP, per https://developer.1password.com/docs/web/compatible-website-design/ // @namespace Violentmonkey Scripts // @match https://secure.square-enix.com/oauth/oa/* // @grant none // @version 1.2 // @author vivacious-memory // @license MIT // ==/UserScript== window.addEventListener('load', function() { document.querySelector('input[name="otppw"]').autocomplete="one-time-code"; }, false);