I would like to
remove the zoom restrictions for mobile web pages on my Android phone (should also work on iPhone/iPad), because my sight is not the best and some fonts are just too tiny for me to read on that little display.
If I researched correctly, the restriction is caused by the '
user-scalable=0' argument of the 'viewport' meta tag, e.g.
<meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' />
I thought it might be possible to replace this '
user-scalable=0' with a '
user-scalable=1' (or remove it alltogether) using a bookmarklet. Unfortunately I don't know any JavaScript, so could someone please help me out on that?