Detect Zero-Width Characters

Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.

ما هو Detect Zero-Width Characters؟

Detect Zero-Width Characters هو إضافة Chrome تم تطويرها بواسطة royaltonpatrick، والميزة الرئيسية لها هي "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Detect Zero-Width Characters

قم بتنزيل ملفات الامتداد Detect Zero-Width Characters بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Detects zero-width characters on a page.

* Highlights zero-width characters.
* Highlights the DOM element containing zero-width characters.
* Displays a warning at bottom-right of element.
* Select text and right-click to sanitize and copy.                    

معلومات أساسية عن التمديد

الاسم Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
عنوان URL الرسمي https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
الوصف Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
حجم الملف 29.88 KB
عدد التثبيتات 547
النسخة الحالية 0.0.4
آخر تحديث 2023-11-01
تاريخ النشر 2018-04-10
تقييم 4.20/5 مجموع تقييمات 5
المطور royaltonpatrick
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detect Zero-Width Characters",
    "version": "0.0.4",
    "manifest_version": 3,
    "description": "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.",
    "homepage_url": "https:\/\/github.com\/roymckenzie\/detect-zero-width-characters-chrome-extension",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "src\/background\/service-worker.js"
    },
    "icons": {
        "16": "src\/icon\/16x16.png",
        "48": "src\/icon\/48x48.png",
        "128": "src\/icon\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/helpers\/constants.js",
                "src\/helpers\/utils.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}