Remove Quora Home Feed

Removes the algorithmic home feed from Quora's homepage

  1. // ==UserScript==
  2. // @name Remove Quora Home Feed
  3. // @version 1.0
  4. // @description Removes the algorithmic home feed from Quora's homepage
  5. // @match https://www.quora.com/
  6. // @icon https://www.quora.com/favicon.ico
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/1435046
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. // Target the specific element using XPath
  14. const feed = document.evaluate(
  15. '/html/body/div[2]/div/div[2]/div/div[3]',
  16. document,
  17. null,
  18. XPathResult.FIRST_ORDERED_NODE_TYPE,
  19. null
  20. ).singleNodeValue;
  21.  
  22. if (feed) feed.remove();
  23. })();