// ==UserScript== // @name 微信网页版全屏 // @namespace https://userscript.snomiao.com/ // @version 0.2 // @description (20200407)让网页版微信在网页内全屏,消除下载PC客户端按钮,原生js实现,不引入jQuery // @author snomiao@gmail.com // @match https://wx.qq.com/* // @run-at document-body // @icon https://res.wx.qq.com/zh_CN/htmledition/v2/images/favicon31e225.ico // @downloadURL https://update.greasyfork.icu/scripts/439227/%E5%BE%AE%E4%BF%A1%E7%BD%91%E9%A1%B5%E7%89%88%E5%85%A8%E5%B1%8F.user.js // @updateURL https://update.greasyfork.icu/scripts/439227/%E5%BE%AE%E4%BF%A1%E7%BD%91%E9%A1%B5%E7%89%88%E5%85%A8%E5%B1%8F.meta.js // ==/UserScript== (() => { var ele = document.createElement("style"); ele.innerHTML = ` div.main{height: 100%; padding-top: 0} div.main_inner{max-width: 100% !important} .download_entry{display:none} .nav_view{top: 154px;} `; document.head.appendChild(ele); })();