I am trying to set the website scale to 100%. I understand that firefox does not support this, but I'm trying to get it to work in chrome.
I set the scaling:
body { padding-top: 0px; padding-bottom: 20px; zoom: 100%; }
And chrome seems to see the css effect:

But when I increase the scaling and updating, it does not return to 100%:

What am I doing wrong and how to fix it? CSS / HTML / jQuery answers are ok.
Edit: It seems the best approach so far is to simulate pressing Ctrl + 0 at boot. I figured out how to generate it, but how do you run it without user input?
var press = jQuery.Event("keypress"); press.ctrlKey = true; press.which = 48;
source share