Greasy Fork is available in English.

Facebook Mobile Redirect to Desktop

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.'));