-
-
Save jkldgoefgkljefogeg/588a5f0e3b48f83804cc08327760733f to your computer and use it in GitHub Desktop.
Bookmarklet version of javascript to get plaintext of Amazon Cloud Reader
This file contains 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
Original code is from https://gist.github.com/aaronshaf/1346968 | |
The instructions were to open a dev console and paste in the script. | |
A nicer way is to make it a bookmarklet. | |
1. Create a new bookmark in our browser. You should be able to edit the name and URL | |
2. Give it a decent name (e.g. "amz cloud plaintext") | |
3. Paste the following as the URL (make it all one line): | |
javascript:(function(){ new_window=window.open();new_window.document.body.innerHTML = $('iframe').contents().find('iframe').contents().find('body').get(1).innerHTML; })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment