Skip to content

Instantly share code, notes, and snippets.

@abidibo
Created February 25, 2016 09:51
Show Gist options
  • Save abidibo/93f9c19803a03e56e8cc to your computer and use it in GitHub Desktop.
Save abidibo/93f9c19803a03e56e8cc to your computer and use it in GitHub Desktop.
greasemonkey quora script
// ==UserScript==
// @name quora
// @namespace quora
// @description quora, deletes topics layer
// @include http://www.quora.com*
// @include https://www.quora.com*
// @version 1
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant none
// ==/UserScript==
(function($) {
$(window).on('load', function() {
$('.follow_interests').remove();
$('.modal_nux_background').remove();
})
})(jQuery)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment