Skip to content

Instantly share code, notes, and snippets.

View phanthai12's full-sized avatar

Thai Phan Bui phanthai12

View GitHub Profile
@phanthai12
phanthai12 / Mobile Facebook
Created October 28, 2014 15:41
Change Url desktop to mobile
// ==UserScript==
// @name mobile facebook
// @namespace mobile facebook
// @include https://www.facebook.com/*
// @version 1.0.0.1
// @grant none
// ==/UserScript==
var fbUrl = document.URL;
if(!/https:\/\/www.facebook.com\/ai.php.*/g.test(fbUrl)){
var mUrl = fbUrl.replace(/https:\/\/www/gi,"https://m");