Autologin to sites that don't have "remember me" feature

0

There's one site that I have to visit quite often that doesn't have a "remember me" checkbox. Is there some extension for Firefox that maybe can automatically execute some actions (or some JavaScript) when the page is loaded?

Nullcaller

Posted 2019-01-18T17:25:13.150

Reputation: 3

Question was closed 2019-01-18T22:27:10.987

Answers

0

Try this one

Autofill by tohodo

I tried its chrome variant and it works perfectly!

Srajan Soni

Posted 2019-01-18T17:25:13.150

Reputation: 38

1Thank you! I've been able to autoclick the login button with execution of the following JS with Autofill: var script = document.createElement("script"); script.innerHTML = "$(\"#<button name>\").click()"; document.body.appendChild(script); – Nullcaller – 2019-01-19T22:10:57.690