Live Transcript Extension

Help people to get real time transcript.

Was ist Live Transcript Extension?

Live Transcript Extension ist eine Chrome-Erweiterung, die von Lakebrains Technologies entwickelt wurde, und ihr Hauptmerkmal ist "Help people to get real time transcript.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Live Transcript Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Live Transcript Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Live Transcript Extension

Universal Platform Support: Our extension seamlessly integrates with a variety of web-based platforms, including Google Meet, Zoom, Youtube, Spotify, and other web audio/video or meeting services.

Security & Privacy Assurance: Rest assured, your data and transcripts are kept secure, as the entire transcription process takes place on your own system. No data is transmitted to external servers or the cloud for processing.

Unrestricted Word and Time Usage: Experience the freedom of unlimited transcription – there are no limits on the number of words or the duration it can transcribe. Use it as often as needed, without any constraints on word count or time duration.

Completely Free: Access the full range of features our extension offers without incurring any charges. It's available to everyone, globally, completely free of charge.

No Registration or Credit Card Required: Your privacy matters to us. We do not mandate any registration, nor do we collect personal contact information for marketing or data-selling purposes.

Download Transcripts: You have the option to download transcriptions for further processing, enabling you to capture summaries, action items, and more using ChatGPT.

Integration with Google Drive: You can choose to upload your transcriptions directly to your Google Drive. By default, the extension does not save your transcripts to Drive.

Limitations: Currently supports English language only.

Continuous Improvement and Feedback:
At Lakebrains, we are committed to continuously enhancing this extension to better serve your needs. We greatly value your feedback and welcome any suggestions or comments you may have. If there are specific features you'd like to see added to the tool, please don't hesitate to reach out to us at [email protected]. Your input is invaluable in making this extension even more efficient and user-friendly.                    

Grundlegende Informationen zur Erweiterung

Name Live Transcript Extension Live Transcript Extension
ID bbdgdpkamhamfdcbbkbooomiliaiahpn
Offizielle URL https://chromewebstore.google.com/detail/live-transcript-extension/bbdgdpkamhamfdcbbkbooomiliaiahpn
Beschreibung Help people to get real time transcript.
Dateigröße 458 MB
Installationsanzahl 2,239
Aktuelle Version 3.1.7
Letztes Update 2023-11-03
Veröffentlichungsdatum 2022-10-12
Bewertung 4.67/5 Insgesamt 12 Bewertungen
Entwickler Lakebrains Technologies
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://lakebrains.com/privacy-policies
Unterstützte Sprachen en
manifest.json
{
    "description": "Help people to get real time transcript.",
    "version": "3.1.7",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Live Transcript Extension",
    "manifest_version": 3,
    "action": {
        "default_title": " transcript",
        "default_icon": "mic.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "oauth2": {
        "client_id": "75322180579-medvlen37uc6t499lcit39rh7437jph9.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "permissions": [
        "identity",
        "activeTab",
        "desktopCapture",
        "storage",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
        "sandbox": "script-src 'self' 'wasm-unsafe-eval'; sandbox allow-scripts; script-src 'self' 'https:\/\/www.googleapis.com'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    }
}