Skip to content

Instantly share code, notes, and snippets.

@phanthai12
Created October 28, 2014 15:41
Show Gist options
  • Save phanthai12/bc2719b26dffeb19d52b to your computer and use it in GitHub Desktop.
Save phanthai12/bc2719b26dffeb19d52b to your computer and use it in GitHub Desktop.
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");
location.href = mUrl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment