Created
November 26, 2013 17:00
-
-
Save owensd/7661970 to your computer and use it in GitHub Desktop.
AppleScript to open Safari with the data:text/html;base64 information.
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
| tell application "Safari" | |
| activate | |
| tell window 1 | |
| open location "data:text/html;base64,PGI+aGVsbG8hPC9iPg==" | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment