zwBlocker

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

Τι είναι το zwBlocker;

Το zwBlocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον APB Software, και η κύρια λειτουργία του είναι "Find and notify the user of zero-width unicode characters.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης zwBlocker

Λήψη αρχείων επέκτασης zwBlocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
Επίσημο URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Περιγραφή Find and notify the user of zero-width unicode characters.
Μέγεθος Αρχείου 77.36 KB
Αριθμός Εγκαταστάσεων 59
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2018-04-17
Ημερομηνία Δημοσίευσης 2018-04-17
Αξιολόγηση 3.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής APB Software
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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'"
}