Data CY Finder

Highlight elements with data-cy attribute

Qu'est-ce que Data CY Finder ?

Data CY Finder est une extension Chrome développée par Michael Manzano, et sa fonction principale est "Highlight elements with data-cy attribute".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Data CY Finder

Téléchargez les fichiers d'extension Data CY Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
URL Officiel https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Description Highlight elements with data-cy attribute
Taille du Fichier 29.24 KB
Nombre d'Installations 198
Version Actuelle 1.0.3
Dernière Mise à Jour 2020-06-27
Date de Publication 2020-06-26
Évaluation 5.00/5 Total 1 Évaluations
Développeur Michael Manzano
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}