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
Eメール [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'"
}