Detect Zero-Width Characters
Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Wat is Detect Zero-Width Characters?
Detect Zero-Width Characters is een Chrome-extensie ontwikkeld door royaltonpatrick, en de belangrijkste functie is "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".
Extensie Screenshots
Download het CRX-bestand van de extensie Detect Zero-Width Characters
Download Detect Zero-Width Characters-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Detect Zero-Width Characters |
ID | icibkhaehdofmcbfjfpppogioidkilib |
Officiële URL | https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib |
Beschrijving | Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text. |
Bestandsgrootte | 29.88 KB |
Aantal Installaties | 547 |
Huidige Versie | 0.0.4 |
Laatst Bijgewerkt | 2023-11-01 |
Publicatiedatum | 2018-04-10 |
Beoordeling | 4.20/5 Totaal 5 Beoordelingen |
Ontwikkelaar | royaltonpatrick |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension |
Ondersteunde Talen | 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" ] } ] } |