Skip to content

Instantly share code, notes, and snippets.

@dashed
Forked from asottile-sentry/fsso.user.js
Created April 26, 2022 15:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
// ==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