Detect Zero-Width Characters
Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Was ist Detect Zero-Width Characters?
Detect Zero-Width Characters ist eine Chrome-Erweiterung, die von royaltonpatrick entwickelt wurde, und ihr Hauptmerkmal ist "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".
Erweiterungsscreenshots
Detect Zero-Width Characters-Erweiterungs-CRX-Datei herunterladen
Laden Sie Detect Zero-Width Characters-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Detect Zero-Width Characters |
ID | icibkhaehdofmcbfjfpppogioidkilib |
Offizielle URL | https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib |
Beschreibung | Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text. |
Dateigröße | 29.88 KB |
Installationsanzahl | 547 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2023-11-01 |
Veröffentlichungsdatum | 2018-04-10 |
Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
Entwickler | royaltonpatrick |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension |
Unterstützte Sprachen | 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" ] } ] } |