Last active
December 2, 2022 00:23
-
-
Save titangene/83e377028b6451652efe0924dd627ce8 to your computer and use it in GitHub Desktop.
redirect Facebook mobile page <---> desktop page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
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