Data CY Finder

Highlight elements with data-cy attribute

O que é Data CY Finder?

Data CY Finder é uma extensão do Chrome desenvolvida por Michael Manzano, e sua principal característica é "Highlight elements with data-cy attribute".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Data CY Finder

Baixe arquivos de extensão Data CY Finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
URL Oficial https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Descrição Highlight elements with data-cy attribute
Tamanho do Arquivo 29.24 KB
Contagem de Instalações 198
Versão Atual 1.0.3
Última Atualização 2020-06-27
Data de Publicação 2020-06-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Michael Manzano
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}