Skip to content

Instantly share code, notes, and snippets.

@mrexodia
Created June 18, 2019 19:13
Show Gist options
  • Save mrexodia/c4d121c26039b4284bdb22171d6881d4 to your computer and use it in GitHub Desktop.
Save mrexodia/c4d121c26039b4284bdb22171d6881d4 to your computer and use it in GitHub Desktop.
Disable LastPass for FFXIV OTP Form
var otppw = document.getElementById("otppw");
if(otppw !== null) {
otppw.type = "text";
otppw.setAttribute("data-lpignore", "true");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment