RapiseMSEdgeExtension

RapiseMSEdgeExtension

This extension allows the Rapise test automation platform to test web applications running in the Microsoft Edge browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "RapiseMSEdgeExtension",
  "short_name": "Rapise Test Suite Support for Microsoft Edge.",
  "description": "This extension allows the Rapise test automation platform to test web applications running in the Microsoft Edge browser.",
  "version": "3.0.11",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "injectedJS.js"
      ],
      "match_about_blank": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}