Testing Library: which query

Testing Library: which query

Find the suggested query to use in your tests

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "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"
  ]
}