Data CY Finder

Highlight elements with data-cy attribute

Co to jest Data CY Finder?

Data CY Finder to rozszerzenie Chrome opracowane przez Michael Manzano, a jego główną funkcją jest „Highlight elements with data-cy attribute”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Data CY Finder

Pobierz pliki rozszerzeń Data CY Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
Oficjalny URL https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
Opis Highlight elements with data-cy attribute
Rozmiar pliku 29.24 KB
Liczba instalacji 198
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2020-06-27
Data Publikacji 2020-06-26
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Michael Manzano
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}