Detect Zero-Width Characters

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

Cos'è Detect Zero-Width Characters?

Detect Zero-Width Characters è un'estensione di Chrome sviluppata da royaltonpatrick, e la sua funzione principale è "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Detect Zero-Width Characters

Scarica i file di estensione Detect Zero-Width Characters in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
URL Ufficiale https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
Descrizione Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Dimensione del File 29.88 KB
Conteggio Installazioni 547
Versione Corrente 0.0.4
Ultimo Aggiornamento 2023-11-01
Data di Pubblicazione 2018-04-10
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore royaltonpatrick
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
Lingue Supportate 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"
            ]
        }
    ]
}