Detect Zero-Width Characters
Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Qu'est-ce que Detect Zero-Width Characters ?
Detect Zero-Width Characters est une extension Chrome développée par royaltonpatrick, et sa fonction principale est "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Detect Zero-Width Characters
Téléchargez les fichiers d'extension Detect Zero-Width Characters au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Detect Zero-Width Characters |
ID | icibkhaehdofmcbfjfpppogioidkilib |
URL Officiel | https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib |
Description | Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text. |
Taille du Fichier | 29.88 KB |
Nombre d'Installations | 547 |
Version Actuelle | 0.0.4 |
Dernière Mise à Jour | 2023-11-01 |
Date de Publication | 2018-04-10 |
Évaluation | 4.20/5 Total 5 Évaluations |
Développeur | royaltonpatrick |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension |
Langues Prises en Charge | 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" ] } ] } |