您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change all LIHKG.com pages to be full width and dynamically sized.
// ==UserScript== // @name Wide LIHKG // @namespace https://github.com/quantumsnowball/wide-lihkg-userscript // @description Change all LIHKG.com pages to be full width and dynamically sized. // @version 1.0.0 // @author Quantum Snowball // @match https://github.com/quantumsnowball/wide-lihkg-userscript // @icon https://www.google.com/s2/favicons?domain=lihkg.com // @homepageURL https://github.com/quantumsnowball/wide-lihkg-userscript // @supportURL https://github.com/quantumsnowball/wide-lihkg-userscript/issues // @license MIT; https://github.com/quantumsnowball/wide-lihkg-userscript/blob/master/LICENSE // @grant none // @include *lihkg.com* // ==/UserScript== var styleSheet = "" + "body[data-app-cx] #app {" + "max-width: 100%;" + "}" + ""; (function () { var s = document.createElement('style'); s.type = "text/css"; s.innerHTML = styleSheet; (document.head || document.documentElement).appendChild(s); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址