zwBlocker

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

Qu'est-ce que zwBlocker ?

zwBlocker est une extension Chrome développée par APB Software, et sa fonction principale est "Find and notify the user of zero-width unicode characters.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension zwBlocker

Téléchargez les fichiers d'extension zwBlocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
URL Officiel https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Description Find and notify the user of zero-width unicode characters.
Taille du Fichier 77.36 KB
Nombre d'Installations 59
Version Actuelle 1.0.1
Dernière Mise à Jour 2018-04-17
Date de Publication 2018-04-17
Évaluation 3.00/5 Total 1 Évaluations
Développeur APB Software
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}