Last active
June 22, 2018 08:48
-
-
Save borisschapira/f240f1db4490e5902af0 to your computer and use it in GitHub Desktop.
AMP Bookmarket : go to the AMP version of the current 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
javascript:(function(){var ampCol = document.querySelectorAll('link[rel="amphtml"');if(ampCol){location.href=ampCol[0].href;}})(); |
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
var ampCol = document.querySelector('link[rel="amphtml"]'); | |
if (ampCol) { | |
location.href = ampCol.href; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment