Skip to content

Instantly share code, notes, and snippets.

@timoa
Last active September 2, 2019 17:43
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 timoa/fb22f3ea14500c074e4d9570c9c5e1ad to your computer and use it in GitHub Desktop.
Save timoa/fb22f3ea14500c074e4d9570c9c5e1ad to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name GitHub without signup
// @version 0.0.3
// @namespace https://gist.githubusercontent.com/timoa/
// @downloadURL https://gist.github.com/timoa/fb22f3ea14500c074e4d9570c9c5e1ad/raw/67d5bfe79a97f460ed20f8f278f1c73942f8f959/Github_without_signup.user.js
// @description Allows to browse a GitHub profiles without the signup box on top
// @author Timoa
// @include http*://github.com/*
// @license MIT
// ==/UserScript==
//
(function() {
document.querySelector("form[action='/prompt_dismissals/signup']").submit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment