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'"
}