Automize - Testing/Scraping Tool

Automize - Testing/Scraping Tool

Say goodbye to tricky element selection. Simplify scripting, mock network events, export to Puppeteer, Playwright and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Automize - Testing/Scraping Tool",
  "description": "Say goodbye to tricky element selection. Simplify scripting, mock network events, export to Puppeteer, Playwright and more.",
  "version": "0.8.12",
  "icons": {
    "32": "/icons/icon32.png",
    "64": "/icons/icon64.png",
    "128": "/icons/icon128.png",
    "256": "/icons/icon256.png"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "devtools_page": "devtools.html",
  "action": {
    "default_popup": "/popup.html"
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "debugger"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/contentFrame.js"
      ],
      "all_frames": true
    }
  ]
}