Testbook - AI-Powered Automated Testing

Testbook - AI-Powered Automated Testing

Revolutionize web app testing with Testbook, AI-driven extension for effortless regression testing, UI comparison, and more! 🚀

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Testbook - AI-Powered Automated Testing",
  "version": "2.3",
  "description": "Revolutionize web app testing with Testbook, AI-driven extension for effortless regression testing, UI comparison, and more! 🚀",
  "manifest_version": 3,
  "author": "Saibabu Pinninti",
  "icons": {
    "16": "images/testbook_logo_17X17.png",
    "48": "images/testbook_logo_49X49.png",
    "128": "images/testbook_logo_129X129.png"
  },
  "action": {
    "default_icon": "images/testbook_logo_17X17.png",
    "default_title": "Testbook Testing Tool"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "tabs"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/script.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "html/*",
        "css/*",
        "images/*",
        "resources/*",
        "css/libaries/*",
        "js/libaries/*",
        "js/components/*",
        "report_assests/*",
        "report_assests/js/kendo/*",
        "report_assests/js/kendo/chart/*",
        "report_assests/js/kendo/devices/*",
        "report_assests/css/kendo/devices/*",
        "report_assests/css/fonts/*",
        "report_assests/css/kendo/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}