您需要先安装一个扩展,例如 篡改猴、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.0 // @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 walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT); let node; while (node = walker.nextNode()) { node.nodeValue = node.nodeValue.replaceAll(/\p{Cf}/gu, '❖'); } })();