Sort Facebook NewsFeed by Most Recent

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Sort Facebook NewsFeed by Most Recent
// @version      2.2
// @description  Automatically sorts your news feed by Most Recent instead of by Top Stories.
// @author       Eric Mintz
// @match        https://www.facebook.com/*
// @grant        none
// @run-at document-start
// @namespace https://greasyfork.org/users/7084
// ==/UserScript==

(function(){
    if (document.location.href == 'https://www.facebook.com/') {
        document.location.href += '?sk=h_chr';
    }
})();