NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name SweepOverflow // @namespace http://tampermonkey.net/ // @version 0.1 // @description Cleans question contents by fixing common typos, to save your brain the hassle. // @author Jabster28 // @license MIT // @copyright 2020, Jabster28 (https://openuserjs.org/users/Jabster28) // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js // @require https://gitcdn.xyz/cdn/surfinzap/typopo/af175ce4eb7ac506ad771db4a9679c179aa49e81/dist/typopo_dist.min.js // @match ://stackoverflow.com/questions/* // @grant none // ==/UserScript== $(".post-text p").each(function (e) { console.log($(".post-text p")); $(".post-text p") .eq(e) .text( typopo.fixTypos($(".post-text p").eq(e).text(), "en-us", { removeLines: false, }) ); });