zwBlocker

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

Was ist zwBlocker?

zwBlocker ist eine Chrome-Erweiterung, die von APB Software entwickelt wurde, und ihr Hauptmerkmal ist "Find and notify the user of zero-width unicode characters.".

Erweiterungsscreenshots

screenshot
screenshot

zwBlocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie zwBlocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
Offizielle URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Beschreibung Find and notify the user of zero-width unicode characters.
Dateigröße 77.36 KB
Installationsanzahl 59
Aktuelle Version 1.0.1
Letztes Update 2018-04-17
Veröffentlichungsdatum 2018-04-17
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler APB Software
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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'"
}