Greasy Fork is available in English.

Square Enix OTP autocomplete hint

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);