javascript - Forcing login autofill on a site where autofill is broken or disabled -
i daily visit couple of sites devs whatever reason have respectively mangled , disabled login submittal, neither autofill nor onepassword can fill login , password fields.
how can avoid typing name , login on every single visit?
i'm open approach autofill working - greasemonkey, or spoofing form submittal page.
the simple way bookmarklet:
javascript:document.forms[0].username.value = 'username'; document.forms[0].password.value = 'password'; document.forms[0].submit();
make bookmark of random page, edit , put text instead of "http://...". may need play if it's not first form on page, or if fields named differently. (view source, and/or right-click , select "inspect element" find name)
when page, click bookmarklet login.
Comments
Post a Comment