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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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