Greasy Fork

网页缩放助手(竖屏用户的福音)

2022/3/17 12:45:47

// ==UserScript==
// @name        网页缩放助手(竖屏用户的福音)
// @include     *
// @grant       none
// @version     1.1
// @author      w
// @description 2022/3/17 12:45:47
// @license MIT
// @namespace https://greasyfork.org/users/114146
// ==/UserScript==
(window.onresize=function(){
var w=document.body.clientWidth;
if(w<1600&&w>800)
    document.getElementsByTagName('body')[0].style.zoom=0.75;
else document.getElementsByTagName('body')[0].style.zoom=1;
  //console.log(w+'缩放'+document.getElementsByTagName('body')[0].style.zoom)
})()