Data CY Finder

Highlight elements with data-cy attribute

What is Data CY Finder?

Data CY Finder is a Chrome extension developed by Michael Manzano, and its main feature is "Highlight elements with data-cy attribute".

Extension Screenshots

screenshot

Download Data CY Finder Extension CRX File

Download Data CY Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
Official URL https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Description Highlight elements with data-cy attribute
File Size 29.24 KB
Installation Count 198
Current Version 1.0.3
Last Updated 2020-06-27
Publish Date 2020-06-26
Rating 5.00/5 Total 1 Ratings
Developer Michael Manzano
Email [email protected]
Payment Type free
Supported Languages 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
}