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文件

下載Testing Library: which query擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}