您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace non-printable characters, e.g., zero-width spaces, with a visible symbol.
当前为
// ==UserScript== // @name Non-Printable Character Detection // @namespace https://greasyfork.org/users/193469 // @description Replace non-printable characters, e.g., zero-width spaces, with a visible symbol. // @version 1.1 // @author Rui LIU (@liurui39660) // @match *://*/* // @icon https://icons.duckduckgo.com/ip2/example.com.ico // @license MIT // @run-at document-end // ==/UserScript== (function () { 'use strict'; const regex = /\p{Cf}/gu; // https://stackoverflow.com/a/12054775/8056404 const to = '\u2756'; // ❖ const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT); const replace = () => { let node; while (node = walker.nextNode()) { node.nodeValue = node.nodeValue.replaceAll(regex, to); } } replace(); new MutationObserver(mutations => { for (const mutation of mutations) { for (const node of mutation.addedNodes) { walker.currentNode = node; replace(); } } }).observe(document.body, {subtree: true, childList: true}); })();