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 là gì?
Detect Zero-Width Characters là một tiện ích mở rộng Chrome được phát triển bởi royaltonpatrick, và tính năng chính của nó là "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Detect Zero-Width Characters
Tải xuống các tệp mở rộng Detect Zero-Width Characters dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Detect Zero-Width Characters |
ID | icibkhaehdofmcbfjfpppogioidkilib |
URL Chính Thức | https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib |
Mô tả | Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text. |
Kích Thước Tệp | 29.88 KB |
Số Lần Cài Đặt | 547 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2023-11-01 |
Ngày Phát Hành | 2018-04-10 |
Đánh Giá | 4.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | royaltonpatrick |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |