Text Autospace

Set text autospace for documents.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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;
  }
`);
})();