Last active
April 27, 2026 08:21
-
-
Save johankj/372396ce4b105d7e8325bae9585309e2 to your computer and use it in GitHub Desktop.
GitHub SSO Auto-Continue [Tampermonkey script]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name GitHub SSO Auto-Continue | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @updateURL https://gist.githubusercontent.com/johankj/372396ce4b105d7e8325bae9585309e2/raw/github-sso-auto-continue.js | |
| // @downloadURL https://gist.githubusercontent.com/johankj/372396ce4b105d7e8325bae9585309e2/raw/github-sso-auto-continue.js | |
| // @description Auto-clicks Continue on GitHub SSO pages | |
| // @author Johan | |
| // @match https://github.com/* | |
| // @grant none | |
| // @run-at document-idle | |
| // ==/UserScript== | |
| (function () { | |
| 'use strict'; | |
| const panel = document.querySelector('.business-sso-panel'); | |
| if (!panel) return; | |
| const button = panel.querySelector('button[type="submit"]'); | |
| if (button) button.click(); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment