zwBlocker

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

What is zwBlocker?

zwBlocker is a Chrome extension developed by APB Software, and its main feature is "Find and notify the user of zero-width unicode characters.".

Extension Screenshots

screenshot
screenshot

Download zwBlocker Extension CRX File

Download zwBlocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
Official URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Description Find and notify the user of zero-width unicode characters.
File Size 77.36 KB
Installation Count 59
Current Version 1.0.1
Last Updated 2018-04-17
Publish Date 2018-04-17
Rating 3.00/5 Total 1 Ratings
Developer APB Software
Email [email protected]
Payment Type free
Supported Languages 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'"
}