Skip to content

Commit 429ab0b

Browse files
committed
feat(GoogleAutoClickFirstAccountSignIn): bump version to 1.4 and add automatic account selection after 5 seconds
1 parent a074c54 commit 429ab0b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

GoogleAutoClickFirstAccountSignIn.user.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Automatically Select First Google Account to Sign In
33
// @namespace typpi.online
4-
// @version 1.3
4+
// @version 1.4
55
// @description Selects the first Google account in the Google account selector page
66
// @author Nick2bad4u
77
// @match https://accounts.google.com/*
@@ -42,4 +42,9 @@
4242

4343
// Observe changes in the document body
4444
observer.observe(document.body, { childList: true, subtree: true });
45+
46+
// Automatically run the function after 5 seconds
47+
setTimeout(() => {
48+
selectFirstAccount();
49+
}, 5000);
4550
})();

0 commit comments

Comments
 (0)