Detect Zero-Width Characters

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

O que é Detect Zero-Width Characters?

Detect Zero-Width Characters é uma extensão do Chrome desenvolvida por royaltonpatrick, e sua principal característica é "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Detect Zero-Width Characters

Baixe arquivos de extensão Detect Zero-Width Characters no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
URL Oficial https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
Descrição Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
Tamanho do Arquivo 29.88 KB
Contagem de Instalações 547
Versão Atual 0.0.4
Última Atualização 2023-11-01
Data de Publicação 2018-04-10
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor royaltonpatrick
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
Idiomas Suportados 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"
            ]
        }
    ]
}