Created
March 3, 2020 18:19
-
-
Save mvark/600af8220dacce3f6e8bf33e7de05064 to your computer and use it in GitHub Desktop.
Readable version of Reading View Bookmarklet for Microsoft Edge
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() { | |
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