Re: Firefox to become adware?
Reply #111 –
Hm, surely there must be an extension for that kind of thing? You can actually also do it quite easily in any browser since about the time of Opera 10.5 with userstyles.
On the html or body element, use a style like this:
transform: scale(1.5);
transform-origin: 0 0;
(Except up to Opera 12 or 12.1, that's -o-transform, and similarly -moz-transform as well as -webkit-transform.)
The scale argument is self-evident, while the transform-origin is because otherwise it hides the top & left parts of the page when scaling.