-
-
Save dashed/37589cfc8338c64e31ba5ffc19c535f5 to your computer and use it in GitHub Desktop.
This file contains 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 fsso | |
// @namespace https://asottile.dev | |
// @version 0.1 | |
// @description click a da button | |
// @author asottile | |
// @match https://github.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const el = document.querySelector('.org-sso-panel button[type=submit]'); | |
if (el !== null) { | |
el.click(); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment