Force mobile facebook view
目前為
// ==UserScript==
// @name formofavi
// @namespace null
// @version 0.1
// @description Force mobile facebook view
// @author gidiigekau
// @match https://*/*
// @run-at document-start
// ==/UserScript==
if (self === top && (/(?:(hu-hu|www).facebook.com)/).test(document.location.href)) {
var target = document.location.href.replace(/hu-hu.facebook|www.facebook/g, "m.facebook");
window.location.replace(target);
}