强制缩放

让网页可以双指放大页面

// ==UserScript==
// @name         强制缩放
// @author       ChatGPT
// @version      1.2
// @description  让网页可以双指放大页面
// @match        *://*/*
// @run-at       document-start
// @grant        none
// @namespace https://gf.qytechs.cn/users/452911
// ==/UserScript==

(function() {
  function autoScale() {
    if (window.innerWidth < 700) {
      document.querySelector('meta[name="viewport"]').setAttribute('content', 'width=device-width, initial-scale=1.0, maximum-scale=10.0, user-scalable=1');
    }
  }

  autoScale();
  document.addEventListener('touchmove', function(e) {
    if (e.touches.length > 1) {
      autoScale();
    }
  });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址