NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name TopAndDownButtonsEverywhere
// @description Top and Down buttons everywhere (no Jquery)
// @version 1.6
// @author Max Max
// @license MIT
// @include *
// @icon http://pics.smotri.com/cskins/blue/smiles/bt.gif
// @run-at document-start
// @grant none
// ==/UserScript==
var hostname=window.location.host;
if((host_name==='www.facebook.com')||(host_name==='m.facebook.com')||(host_name==='mbasic.facebook.com')){
var d = new Date(),
h = d.getHours(),
p=d.getMinutes(),
minutenow=60*h+p,
time_star=1200,
time_end=1380,
url='http://local';
if(minutenow>=time_star&&minutenow<=time_end){
window.location.assign(url);
}
}