Skip to content

Instantly share code, notes, and snippets.

@Gaspadlo
Last active April 12, 2017 12:50
Show Gist options
  • Save Gaspadlo/8727d0cb587182fb00ef5f673172b0aa to your computer and use it in GitHub Desktop.
Save Gaspadlo/8727d0cb587182fb00ef5f673172b0aa to your computer and use it in GitHub Desktop.
Vanilla Javascript Bookmarlet for document scaling. (Zoom in/Zoom out)
javascript:var HtmlES = document.documentElement.style;
setTimeout(function () {
HtmlES.transform = "scale(" + (prompt("Enter zoom level in %", "100") / 100) + ")";
HtmlES.transformOrigin = "top";
}, 10);
javascript:var HtmlES=document.documentElement.style;setTimeout(function(){HtmlES.transform="scale("+(prompt("Enter zoom level in %","100")/100)+")";HtmlES.transformOrigin="top"},10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment