// ==UserScript== // @name 自动适应屏幕大小 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动适应屏幕大小脚本示例 // @match http://*/* // @match https://*/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 获取当前窗口宽度和高度 var width = window.innerWidth; var height = window.innerHeight; // 计算应用到页面元素的CSS样式 var css = ` body { font-size: ${Math.min(width, height) / 20}px; } /* 其他元素的自动适应样式 */ `; // 使用JavaScript修改页面CSS样式 var style = document.createElement('style'); style.innerHTML = css; document.head.appendChild(style); })();