Created
November 3, 2018 19:59
-
-
Save amuradyan/b0c916f83ca9d3d01077e46607313e54 to your computer and use it in GitHub Desktop.
A Google Chrome bookmarklet that converts all the english to aurebesh on a page
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
// In order for this to work you need the AurebeshWC font | |
// You can download it from here - https://goo.gl/yaNc3K | |
// | |
// Uncomment all lines below this and store it as a bookmarklet | |
// javascript:( | |
function() { | |
var p=document.getElementsByTagName("*") | |
for (i=0; i<p.length; i++) | |
p[i].style.fontFamily = "AurebeshWC" | |
} | |
// )(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment