为页面设置文本自动间距。
当前为
// ==UserScript== // @name Text Autospace // @name:zh-CN 文本自动间距 // @name:zh-TW 文本自動間距 // @version 1.0.0 // @description Set text autospace for documents. // @description:zh-CN 为页面设置文本自动间距。 // @description:zh-TW 為頁面設定文本自動間距。 // @author Kevin Deng <[email protected]> // @homepage https://github.com/sxzz/userscripts // @supportURL https://github.com/sxzz/userscripts/issues // @license MIT // @contributionURL https://github.com/sponsors/sxzz // @run-at document-body // @include * // @grant GM_addStyle // @namespace https://github.com/sxzz/userscripts/blob/main/dist/text-autospace.user.js // ==/UserScript== (function() { const css = String.raw; GM_addStyle(css` :root { text-autospace: normal; } `); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址