Skip to content

Instantly share code, notes, and snippets.

@amuradyan
Created November 3, 2018 19:59
Show Gist options
  • Save amuradyan/b0c916f83ca9d3d01077e46607313e54 to your computer and use it in GitHub Desktop.
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
// 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