ATG Recorder

ATG Recorder

Screen Recorder extension to record screen and audio

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ATG Recorder",
  "version": "23.11.27",
  "permissions": [
    "notifications",
    "tabs",
    "desktopCapture",
    "scripting",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "camera.png"
  },
  "icons": {
    "16": "camera.png",
    "32": "camera.png",
    "64": "camera.png",
    "128": "camera.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "notification.html",
        "stopNotification.html",
        "dragFunction",
        "timer.js",
        "timer.html",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}