Skip to content

Instantly share code, notes, and snippets.

@titangene
Last active December 2, 2022 00:23
Show Gist options
  • Save titangene/83e377028b6451652efe0924dd627ce8 to your computer and use it in GitHub Desktop.
Save titangene/83e377028b6451652efe0924dd627ce8 to your computer and use it in GitHub Desktop.
redirect Facebook mobile page <---> desktop page
(() => {
if (location.host === 'm.facebook.com') {
location.href = 'https://www.facebook.com' + location.pathname + location.search;
return;
}
if (location.host === 'www.facebook.com') {
location.href = 'https://m.facebook.com' + location.pathname + location.search;
return;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment