13 ms·
Ha that page is funny - the sign-in button just has a disabled cursor now. What a shitshow. I finally figured out a way to script that input form from chrome d
by anachronox 2y ago
Ha that page is funny - the sign-in button just has a disabled cursor now. What a shitshow.
I finally figured out a way to script that input form from chrome dev tools (https://urjit.io/blog/vfs/#update https://urjit.io/blog/vfs/#update)
```
const input = document.getElementById('password');
const event = new Event('input', { bubbles: true });
input.value = 'password';
input.dispatchEvent(event);
```