Data CY Finder

Highlight elements with data-cy attribute

ما هو Data CY Finder؟

Data CY Finder هو إضافة Chrome تم تطويرها بواسطة Michael Manzano، والميزة الرئيسية لها هي "Highlight elements with data-cy attribute".

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

screenshot

تحميل ملف CRX للإضافة Data CY Finder

قم بتنزيل ملفات الامتداد Data CY Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        For sites using Cypress.io best practices, this will help highlight elements using the data-cy attribute and allow you to copy its value.                    

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

الاسم Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
عنوان URL الرسمي https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
الوصف Highlight elements with data-cy attribute
حجم الملف 29.24 KB
عدد التثبيتات 198
النسخة الحالية 1.0.3
آخر تحديث 2020-06-27
تاريخ النشر 2020-06-26
تقييم 5.00/5 مجموع تقييمات 1
المطور Michael Manzano
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Data CY Finder",
    "version": "1.0.3",
    "description": "Highlight elements with data-cy attribute",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "data-cy.css"
            ],
            "js": [
                "data-cy.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "copy.png",
        "data-cy.html"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Data-CY"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}