Caption.Ed
Realtime video transcription
What is Caption.Ed?
Caption.Ed is a Chrome extension developed by Caption.Ed, and its main feature is "Realtime video transcription".
Extension Screenshots
Download Caption.Ed Extension CRX File
Download Caption.Ed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Provides a live, on-screen captioning and transcription of any video or audio content playing from a webpage. Simply click the extension, select the language and press play and transcription appears instantly. You'll need a Caption.Ed Lite or Caption.Ed Pro account to use the software which you can set up at www.caption-ed.com Please note that the browser extension only supports captioning and transcription, it doesn't support note-taking that's available with the Caption.Ed desktop and mobile apps. Requires credit card details.
Extension Basic Information
Name | Caption.Ed |
ID | aokjakfeailcmenjjgmbcepkfkcfgpie |
Official URL | https://chromewebstore.google.com/detail/captioned/aokjakfeailcmenjjgmbcepkfkcfgpie |
Description | Realtime video transcription |
File Size | 266 KB |
Installation Count | 9,000 |
Current Version | 1.7.4 |
Last Updated | 2024-01-10 |
Publish Date | 2020-11-17 |
Rating | 2.85/5 Total 13 Ratings |
Developer | Caption.Ed |
[email protected] | |
Payment Type | free |
Extension Website | https://www.caption-ed.com |
Help Page URL | https://help.caption-ed.com |
Privacy Policy Page URL | https://caption-ed.com/privacy-policy |
Supported Languages | en |
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" } } } |