Skip to content

Instantly share code, notes, and snippets.

@beshur
Last active November 15, 2018 13:30
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 beshur/74d9ca1af7e7fa1e4c30e0a65d6937ee to your computer and use it in GitHub Desktop.
Save beshur/74d9ca1af7e7fa1e4c30e0a65d6937ee to your computer and use it in GitHub Desktop.
[Tampermonkey] Quora Links Remover
// ==UserScript==
// @name Quora Links Remover
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @description try to read Quora again!
// @author Alex Buznik
// @match https://www.quora.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
// test update
window.onscroll = removeLinks;
function removeLinks() {
document.querySelectorAll('.HyperLinkFeedStory').forEach(item => item.remove());
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment