zwBlocker

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

什么是zwBlocker?

zwBlocker是由APB Software开发的Chrome扩展程序,该扩展的主要功能是“Find and notify the user of zero-width unicode characters.”。

扩展截图

screenshot
screenshot

下载zwBlocker扩展crx文件

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