Caption.Ed

Caption.Ed

Realtime video transcription

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Caption.Ed",
  "description": "Realtime video transcription",
  "version": "1.7.4",
  "permissions": [
    "tabs",
    "tabCapture",
    "activeTab",
    "storage",
    "webRequest",
    "cookies",
    "*://*.echo360.org.uk/",
    "*://*/*.m3u8*",
    "*://*/*.mp4*",
    "*://*.sentry.io/",
    "https://captioned.talk-type.com/",
    "*://*.carescribe.io/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://onboard.caption-ed.com/",
        "https://captionedonboardingchrome.netlify.app/",
        "http://localhost:3002/"
      ],
      "js": [
        "installationVerifier.bundle.js"
      ]
    },
    {
      "matches": [
        "http://*.captioned.test/*",
        "https://*.talk-type.com/*",
        "https://*.carescribe.io/*",
        "https://*.caption-ed.com/*"
      ],
      "js": [
        "autoLoginScript.bundle.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "[email protected]"
  },
  "icons": {
    "16": "[email protected]",
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "commands": {
    "start": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+I"
      },
      "description": "Start Capture"
    },
    "stop": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+U"
      },
      "description": "Stop Capture"
    }
  }
}