Skip to content

Instantly share code, notes, and snippets.

@dashed
Forked from asottile-sentry/fsso.user.js
Created April 26, 2022 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dashed/37589cfc8338c64e31ba5ffc19c535f5 to your computer and use it in GitHub Desktop.
Save dashed/37589cfc8338c64e31ba5ffc19c535f5 to your computer and use it in GitHub Desktop.
// ==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