Reroute m.facebook pages to their www counterparts
// ==UserScript==
// @name Facebook Mobile Redirect to Desktop
// @description Reroute m.facebook pages to their www counterparts
// @match https://m.facebook.com/*
// @version 0.1
// @author mica
// @namespace greasyfork.org/users/12559
// @license MIT
// ==/UserScript==
location.replace(location.href.replace('/m.','/www.'));