SweepOverflow

Cleans question contents by fixing common typos, to save your brain the hassle.

  1. // ==UserScript==
  2. // @name SweepOverflow
  3. // @namespace https://tampermonkey.net/
  4. // @version 1.0
  5. // @description Cleans question contents by fixing common typos, to save your brain the hassle.
  6. // @author Jabster28
  7. // @license MIT
  8. // @copyright 2020, Jabster28 (https://openuserjs.org/users/Jabster28)
  9. // @require https://gitcdn.xyz/cdn/surfinzap/typopo/af175ce4eb7ac506ad771db4a9679c179aa49e81/dist/typopo_dist.min.js
  10. // @match https://stackoverflow.com/questions/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. var elements = document.querySelectorAll(".post-text p");
  15. Array.prototype.forEach.call(elements, function (el, i) {
  16. el.textContent = typopo.fixTypos(el.textContent, "en-us", {
  17. removeLines: false,
  18. });
  19. });

QingJ © 2025

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