Detect Zero-Width Characters

Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.

¿Qué es Detect Zero-Width Characters?

Detect Zero-Width Characters es una extensión de Chrome desarrollada por royaltonpatrick, y su función principal es "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Detect Zero-Width Characters

Descarga archivos de extensión Detect Zero-Width Characters en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
URL Oficial https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
Descripción Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Tamaño del Archivo 29.88 KB
Cantidad de Instalaciones 547
Versión Actual 0.0.4
Última Actualización 2023-11-01
Fecha de Publicación 2018-04-10
Calificación 4.20/5 Total de 5 Calificaciones
Desarrollador royaltonpatrick
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
Idiomas Soportados 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"
            ]
        }
    ]
}