Sort Facebook NewsFeed by Most Recent

Automatically sorts your news feed by Most Recent instead of by Top Stories.

  1. // ==UserScript==
  2. // @name Sort Facebook NewsFeed by Most Recent
  3. // @version 2.2
  4. // @description Automatically sorts your news feed by Most Recent instead of by Top Stories.
  5. // @author Eric Mintz
  6. // @match https://www.facebook.com/*
  7. // @grant none
  8. // @run-at document-start
  9. // @namespace https://greasyfork.org/users/7084
  10. // ==/UserScript==
  11.  
  12. (function(){
  13. if (document.location.href == 'https://www.facebook.com/') {
  14. document.location.href += '?sk=h_chr';
  15. }
  16. })();