Data CY Finder

Highlight elements with data-cy attribute

Cos'è Data CY Finder?

Data CY Finder è un'estensione di Chrome sviluppata da Michael Manzano, e la sua funzione principale è "Highlight elements with data-cy attribute".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Data CY Finder

Scarica i file di estensione Data CY Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
URL Ufficiale https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Descrizione Highlight elements with data-cy attribute
Dimensione del File 29.24 KB
Conteggio Installazioni 198
Versione Corrente 1.0.3
Ultimo Aggiornamento 2020-06-27
Data di Pubblicazione 2020-06-26
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Michael Manzano
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}