Facebook Auto Redirect Most Recent

GoodBye Top Stories

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name Facebook Auto Redirect Most Recent
// @version	0.2
// @author Akbar Yahya & Hélder Ferreira
// @description	GoodBye Top Stories
// @icon http://i.imgur.com/WpjyLA4.png
// @include	https://www.facebook.com/*
// @include	http://www.facebook.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
// @grant none
// @namespace https://greasyfork.org/users/11997
// ==/UserScript==
var siakbary = "http://www.facebook.com/?siakbary=true&sk=h_chr";
$(window).ready(function(){
    var urlx=window.location.href;
    if (window.location.pathname == '/' ){
     // Index (home) page
     if(urlx.indexOf( "?siakbary=true" ) == -1)
         window.location.replace(siakbary);
    } else {
     // Other page
     console.log(urlx);
    }
});
$("[data-click='home_icon']").click(function(){
    window.location.replace(siakbary);
});
$('a[data-testid="blue_bar_fb_logo"]').attr("href", siakbary);