Data CY Finder

Highlight elements with data-cy attribute

Data CY Finderとは何ですか?

Data CY FinderはMichael Manzanoによって開発されたChromeの拡張機能で、その主な機能は「Highlight elements with data-cy attribute」です。

拡張機能のスクリーンショット

screenshot

Data CY Finder拡張機能のCRXファイルをダウンロード

Data CY Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Data CY Finder Data CY Finder
ID pkpgbbjlnfbnjenggofnhpbelflefaje
公式URL https://chromewebstore.google.com/detail/data-cy-finder/pkpgbbjlnfbnjenggofnhpbelflefaje
説明 Highlight elements with data-cy attribute
ファイルサイズ 29.24 KB
インストール数 198
現在のバージョン 1.0.3
最終更新日 2020-06-27
公開日 2020-06-26
評価 5.00/5 合計 1 レビュー
開発者 Michael Manzano
Eメール [email protected]
支払い方法 free
対応言語 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
}