Remove leading spaces in AO3

Removes the leading indents for paragraphs in AO3 works.

  1. // ==UserScript==
  2. // @name Remove leading spaces in AO3
  3. // @version 1.0
  4. // @description Removes the leading indents for paragraphs in AO3 works.
  5. // @match https://archiveofourown.org/works/*
  6. // @namespace https://gf.qytechs.cn/users/413030
  7. // ==/UserScript==
  8.  
  9. (function() {
  10. 'use strict';
  11. const paragraphs = document.getElementsByTagName('p');
  12. for(var i = 0; i < paragraphs.length; i++){
  13. paragraphs[i].innerHTML = paragraphs[i].innerHTML.replace(/^(?:\s|&nbsp;)+/, ' ');
  14. }
  15. })();

QingJ © 2025

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