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