|
|
|
|
|
by anachronox
648 days 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) ```
const input = document.getElementById('password');
const event = new Event('input', { bubbles: true });
input.value = 'password';
input.dispatchEvent(event);
``` |
|