Detect Zero-Width Characters
Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
什么是Detect Zero-Width Characters?
Detect Zero-Width Characters是由royaltonpatrick开发的Chrome扩展程序,该扩展的主要功能是“Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.”。
扩展截图
下载Detect Zero-Width Characters扩展crx文件
下载Detect Zero-Width Characters扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Detects zero-width characters on a page.
* Highlights zero-width characters.
* Highlights the DOM element containing zero-width characters.
* Displays a warning at bottom-right of element.
* Select text and right-click to sanitize and copy. 扩展基本信息
| 名称 | |
| ID | icibkhaehdofmcbfjfpppogioidkilib |
| 官方URL | https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib |
| 简介 | Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text. |
| 文件大小 | 29.88 KB |
| 安装次数 | 547 |
| 当前版本 | 0.0.4 |
| 更新时间 | 2023-11-01 |
| 上架时间 | 2018-04-10 |
| 评分 | 4.20/5 共5次评分 |
| 开发者 | royaltonpatrick |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Detect Zero-Width Characters",
"version": "0.0.4",
"manifest_version": 3,
"description": "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.",
"homepage_url": "https:\/\/github.com\/roymckenzie\/detect-zero-width-characters-chrome-extension",
"permissions": [
"contextMenus",
"clipboardWrite"
],
"background": {
"service_worker": "src\/background\/service-worker.js"
},
"icons": {
"16": "src\/icon\/16x16.png",
"48": "src\/icon\/48x48.png",
"128": "src\/icon\/128x128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"src\/helpers\/constants.js",
"src\/helpers\/utils.js",
"src\/inject\/inject.js"
]
}
]
} | |