Skip to content

Instantly share code, notes, and snippets.

@borisschapira
Last active June 22, 2018 08:48
Show Gist options
  • Save borisschapira/f240f1db4490e5902af0 to your computer and use it in GitHub Desktop.
Save borisschapira/f240f1db4490e5902af0 to your computer and use it in GitHub Desktop.
AMP Bookmarket : go to the AMP version of the current page.
javascript:(function(){var ampCol = document.querySelectorAll('link[rel="amphtml"');if(ampCol){location.href=ampCol[0].href;}})();
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