Skip to content

Instantly share code, notes, and snippets.

@mvark
Created March 3, 2020 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvark/600af8220dacce3f6e8bf33e7de05064 to your computer and use it in GitHub Desktop.
Save mvark/600af8220dacce3f6e8bf33e7de05064 to your computer and use it in GitHub Desktop.
Readable version of Reading View Bookmarklet for Microsoft Edge
javascript:(function() {
a = document.getElementsByTagName('a');
for (i = 0; i < a.length; i++) {
a[i].href = 'read:' + a[i].href;
a[i].target='_blank';
a[i].style.backgroundColor = '#f0f0f0';
}
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment