Data CY Finder

Highlight elements with data-cy attribute

Wat is Data CY Finder?

Data CY Finder is een Chrome-extensie ontwikkeld door Michael Manzano, en de belangrijkste functie is "Highlight elements with data-cy attribute".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Data CY Finder

Download Data CY Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
Officiële URL https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Beschrijving Highlight elements with data-cy attribute
Bestandsgrootte 29.24 KB
Aantal Installaties 198
Huidige Versie 1.0.3
Laatst Bijgewerkt 2020-06-27
Publicatiedatum 2020-06-26
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Michael Manzano
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}