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
官方網址 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'"
}