Remove leading spaces in AO3

Removes the leading indents for paragraphs in AO3 works.

// ==UserScript==
// @name         Remove leading spaces in AO3
// @version      1.0
// @description  Removes the leading indents for paragraphs in AO3 works.
// @match        https://archiveofourown.org/works/*
// @namespace https://gf.qytechs.cn/users/413030
// ==/UserScript==

(function() {
    'use strict';
    const paragraphs = document.getElementsByTagName('p');
    for(var i = 0; i < paragraphs.length; i++){
        paragraphs[i].innerHTML = paragraphs[i].innerHTML.replace(/^(?:\s|&nbsp;)+/, ' ');
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址