// ==UserScript== // @name 桌面模式比例显示网页 // @author 酷安@耗子Sky // @description 需要改浏览器ua为电脑ua // @match *://*/* // @grant none // @version 1.0 // @run-at document-end // @author - // @namespace https://greasyfork.org/users/452911 // @downloadURL none // ==/UserScript== !(function() { if (navigator.userAgent.indexOf('Mobile')<0) { document.querySelector('meta[name=viewport]').setAttribute('content','width=device-width,initial-scale=0.33,maximum-scale=10.0,user-scalable=1'); } })();