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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}