RobinRecorder

RobinRecorder

The extension is intended for interaction of the ROBIN platform with the Google Chrome browser. The extension allows user to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RobinRecorder",
  "permissions": [
    "tabs",
    "offscreen"
  ],
  "version": "0.2",
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "jquery-3.6.4.min.js",
        "content.js",
        "listener.js",
        "webElement.js"
      ]
    }
  ],
  "icons": {
    "16": "Robin16.png",
    "48": "Robin48.png",
    "128": "Robin128.png"
  }
}