zwBlocker

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

Hvad er zwBlocker?

zwBlocker er en Chrome-udvidelse udviklet af APB Software, og dens hovedfunktion er "Find and notify the user of zero-width unicode characters.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download zwBlocker-udvidelses-CRX-fil

Download zwBlocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
Officiel URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Beskrivelse Find and notify the user of zero-width unicode characters.
Filstørrelse 77.36 KB
Antal Installationer 59
Nuværende Version 1.0.1
Senest Opdateret 2018-04-17
Udgivelsesdato 2018-04-17
Bedømmelse 3.00/5 Samlet 1 Bedømmelser
Udvikler APB Software
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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'"
}