zwBlocker

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

Co je zwBlocker?

zwBlocker je rozšíření Chrome vyvinuté APB Software, a jeho hlavní funkcí je „Find and notify the user of zero-width unicode characters.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření zwBlocker

Stáhněte si soubory rozšíření zwBlocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
Oficiální URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Popis Find and notify the user of zero-width unicode characters.
Velikost souboru 77.36 KB
Počet instalací 59
Aktuální Verze 1.0.1
Poslední Aktualizace 2018-04-17
Datum Vydání 2018-04-17
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář APB Software
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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'"
}