Appway Workspace Recorder

Appway Workspace Recorder

Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Appway Workspace Recorder",
  "description": "Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing.",
  "version": "2.0.0",
  "permissions": [
    "downloads",
    "contextMenus",
    "notifications",
    "webNavigation",
    "activeTab",
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "js/jquery/jquery.min.map"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery/jquery.min.js",
      "js/jszip/jszip.min.js",
      "js/global.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/jszip/jszip.min.js",
        "js/listener/recorder.js",
        "js/listener/v910.js",
        "js/content.js",
        "js/dom.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}