Playwright CRX

Playwright CRX

Playwright 1.43.0 as a chrome extension. You can record using Playwright Record directly on your browser. Just attach the tabs you…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Playwright CRX",
  "version": "0.6.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon-16x16.png",
    "32": "icon-32x32.png",
    "48": "icon-48x48.png",
    "128": "icon-192x192.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "icon-16x16.png",
      "32": "icon-32x32.png"
    },
    "default_title": "Record"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "debugger",
    "tabs",
    "contextMenus",
    "storage"
  ]
}