您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Cleans question contents by fixing common typos, to save your brain the hassle.
// ==UserScript== // @name SweepOverflow // @namespace https://tampermonkey.net/ // @version 1.0 // @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://gitcdn.xyz/cdn/surfinzap/typopo/af175ce4eb7ac506ad771db4a9679c179aa49e81/dist/typopo_dist.min.js // @match https://stackoverflow.com/questions/* // @grant none // ==/UserScript== var elements = document.querySelectorAll(".post-text p"); Array.prototype.forEach.call(elements, function (el, i) { el.textContent = typopo.fixTypos(el.textContent, "en-us", { removeLines: false, }); });