zwBlocker

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

zwBlocker là gì?

zwBlocker là một tiện ích mở rộng Chrome được phát triển bởi APB Software, và tính năng chính của nó là "Find and notify the user of zero-width unicode characters.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng zwBlocker

Tải xuống các tệp mở rộng zwBlocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
URL Chính Thức https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
Mô tả Find and notify the user of zero-width unicode characters.
Kích Thước Tệp 77.36 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-04-17
Ngày Phát Hành 2018-04-17
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển APB Software
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}