Skip to content

Instantly share code, notes, and snippets.

@asl97
Last active May 3, 2017 04:37
Show Gist options
  • Save asl97/52ddd1e8417237bf06931b3f64b9f42c to your computer and use it in GitHub Desktop.
Save asl97/52ddd1e8417237bf06931b3f64b9f42c to your computer and use it in GitHub Desktop.
Quora without registration userscript
// ==UserScript==
// @name Quora without registration
// @version 0.0.2
// @namespace https://gist.githubusercontent.com/asl97/
// @downloadURL https://gist.github.com/asl97/52ddd1e8417237bf06931b3f64b9f42c/raw/Quora_without_registration.user.js
// @description Allows to browse quora without login/registration, removing the offending modal popup
// @author ASL97
// @include http://*.quora.com/*
// @include https://*.quora.com/*
// @require http://code.jquery.com/jquery-latest.min.js
// @license uh.... MIT?
// ==/UserScript==
//
// based on https://greasyfork.org/en/scripts/6325-pinterest-without-registration
//
$(document).ready(function () {
$('[id*="signup_wall_wrapper"]').remove()
$("body").removeClass("signup_wall_prevent_scroll");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment