Skip to content

Instantly share code, notes, and snippets.

@swanson
Created July 30, 2012 17:11
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save swanson/3208442 to your computer and use it in GitHub Desktop.
Save swanson/3208442 to your computer and use it in GitHub Desktop.
Chrome user script to unblur Quora answers without signing up
// ==UserScript==
// @match http://*.quora.com/*
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//code.jquery.com/jquery-latest.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// the guts of this userscript
function main() {
$('.blurred_answer_wrapper').removeClass('blurred_answer_wrapper');
$('.with_signup').removeClass('with_signup');
$('.signup_cta_on_answer').remove();
}
// load jQuery and execute the main function
addJQuery(main);
@jackmoore
Copy link

One of the few times where vanilla JS would be simpler:
https://gist.github.com/3518701

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment