Testing Library: which query

Find the suggested query to use in your tests

Testing Library: which query란 무엇입니까?

Testing Library: which query은(는) Ben Monro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find the suggested query to use in your tests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Testing Library: which query 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        DevTools for Testing Library.  You can now improve your tests using best practices & guidance from testing library. Features include:

* Copy queries from any web page
* Elements Inspector Panel
* Play with queries right in the dev tools console window.                    

확장 프로그램 기본 정보

이름 Testing Library: which query Testing Library: which query
ID olmmagdolfehlpjmbkmondggbebeimoh
공식 URL https://chromewebstore.google.com/detail/testing-library-which-que/olmmagdolfehlpjmbkmondggbebeimoh
설명 Find the suggested query to use in your tests
파일 크기 1.26 MB
설치 횟수 3,148
현재 버전 0.0.2
최근 업데이트 2020-06-18
출시 날짜 2020-06-17
평점 4.00/5 총 3 개의 평점
개발자 Ben Monro
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/testing-library/which-query
도움말 페이지 URL https://github.com/testing-library/which-query/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Testing Library: which query",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Find the suggested query to use in your tests",
    "homepage_url": "https:\/\/github.com\/testing-library\/which-query",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "dist\/globals.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "content_security_policy": "script-src 'self' 'sha256-nP0EI9B9ad8IoFUti2q7EQBabcE5MS5v0nkvRfUbYnM='; object-src 'self'",
    "devtools_page": "pages\/devtools.html",
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ]
}