您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
为页面设置文本自动间距。
当前为
// ==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; } `); })();