Live Transcript Extension

Help people to get real time transcript.

O que é Live Transcript Extension?

Live Transcript Extension é uma extensão do Chrome desenvolvida por Lakebrains Technologies, e sua principal característica é "Help people to get real time transcript.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Live Transcript Extension

Baixe arquivos de extensão Live Transcript Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Live Transcript Extension Live Transcript Extension
ID bbdgdpkamhamfdcbbkbooomiliaiahpn
URL Oficial https://chromewebstore.google.com/detail/live-transcript-extension/bbdgdpkamhamfdcbbkbooomiliaiahpn
Descrição Help people to get real time transcript.
Tamanho do Arquivo 458 MB
Contagem de Instalações 2,239
Versão Atual 3.1.7
Última Atualização 2023-11-03
Data de Publicação 2022-10-12
Classificação 4.67/5 Total de 12 Avaliações
Desenvolvedor Lakebrains Technologies
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://lakebrains.com/privacy-policies
Idiomas Suportados 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"
    }
}