zwBlocker

Find and notify the user of zero-width unicode characters.

O que é zwBlocker?

zwBlocker é uma extensão do Chrome desenvolvida por APB Software, e sua principal característica é "Find and notify the user of zero-width unicode characters.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão zwBlocker

Baixe arquivos de extensão zwBlocker 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

                        Any text that you copy can include hidden characters that might be used to track you. This extension helps identify these hidden characters. 

How to use:
1. The extension icon will display the number of zero-width characters on the page.

2. A warning will appear if you select text containing zero-width characters.

3. Click "more" in the warning notification to get a safe version of the text.                    

Informações Básicas da Extensão

Nome zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
URL Oficial https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Descrição Find and notify the user of zero-width unicode characters.
Tamanho do Arquivo 77.36 KB
Contagem de Instalações 59
Versão Atual 1.0.1
Última Atualização 2018-04-17
Data de Publicação 2018-04-17
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor APB Software
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "zwBlocker",
    "description": "Find and notify the user of zero-width unicode characters.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find zero-width characters."
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "notifications"
    ],
    "content_security_policy": "object-src 'self'"
}