Skip to content

Instantly share code, notes, and snippets.

@AndyM84
Last active January 7, 2018 05:10
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 AndyM84/918b7cefcf07c69644cc7412e0f475a4 to your computer and use it in GitHub Desktop.
Save AndyM84/918b7cefcf07c69644cc7412e0f475a4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name No Thanks, Facebook
// @namespace http://andymale.com/
// @version 0.1
// @description Because no, "Most Recent" is actually what I want by default.
// @author Andrew Male
// @include https://www.facebook.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (location.href == 'https://www.facebook.com/') {
location.href = 'https://www.facebook.com/?sk=h_chr';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment