Examine source code of DO Deck Web Recorder

Inspect and view changes in DO Deck Web Recorder source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "DO Deck Web Recorder",
  "short_name": "DO Deck",
  "version": "0.0.1",
  "description": "The DO Deck Edge extension records user web automation actions for simplified workflow management",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "DO Deck Extension"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "recorder.js",
        "runner.js"
      ]
    }
  ],
  "icons": {
    "128": "deck_logo.png"
  },
  "permissions": [
    "tabs",
    "background",
    "http://*/*",
    "https://*/*",
    "nativeMessaging"
  ],
  "offline_enabled": false,
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' "
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}