this post was submitted on 21 Nov 2023
15 points (89.5% liked)
Firefox
17853 readers
87 users here now
A place to discuss the news and latest developments on the open-source browser Firefox
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I too wanted the same just write a small UserScript or just a ublock scriplet to modify viewport : function addViewport() { var metaTag = document.createElement('meta'); metaTag.name = "viewport"; metaTag.content = "width=device-width, initial-scale=0.45, maximum-scale=0.8, user-scalable=1"; document.querySelector('head').appendChild(metaTag); } document.addEventListener('DOMContentLoaded', function () { addViewport(); });