Meeper - transcribe & summarize Meets

Transcriptions, summary and more using ChatGPT and Whisper AI for meetings and any browser tab.

Meeper - transcribe & summarize Meets란 무엇입니까?

Meeper - transcribe & summarize Meets은(는) https://meeper.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transcriptions, summary and more using ChatGPT and Whisper AI for meetings and any browser tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Meeper - transcribe & summarize Meets 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Meeper 📝 - is your secretary for any in-browser conference.

An open-source browser extension that serves as your secretary for any in-browser conference. It leverages the power of ChatGPT and Whisper AI to provide transcriptions, summaries, and more for meetings and any browser tab.

https://meeper.ai
https://github.com/pas1ko/meeper

Features:
- 🫧 Works seamlessly with your OpenAI account.
- 🔐 Your API Key is securely stored locally on your browser, encrypted, and never transmitted elsewhere.
- 🤖 Meeper utilizes Whisper for accurate transcriptions and ChatGPT for generating summaries.
- 💿 Speech detection feature optimizes API usage by activating only when speech sounds are detected, reducing up to 30% of resource consumption.
- 🧩 Utilizes the chrome tabCapture API to capture audio from specific tabs.
- 🎮 Multiple launch options available: hotkey activation, extension popup, and context menu integration.
- 🕹️ Real-time control of transcription playback, similar to a music player.
- 🎛️ Supports running transcriptions simultaneously from multiple tabs.
- 🌎 Multilingual support for diverse language requirements.
- 📠 History is stored directly on the local machine.                    

확장 프로그램 기본 정보

이름 Meeper - transcribe & summarize Meets Meeper - transcribe & summarize Meets
ID pollmehpbdljnolojdajljeoejeglcfi
공식 URL https://chromewebstore.google.com/detail/meeper-transcribe-summari/pollmehpbdljnolojdajljeoejeglcfi
설명 Transcriptions, summary and more using ChatGPT and Whisper AI for meetings and any browser tab.
파일 크기 844 KB
설치 횟수 69
현재 버전 0.5.1
최근 업데이트 2023-08-30
출시 날짜 2023-06-22
평점 5.00/5 총 2 개의 평점
개발자 https://meeper.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://meeper.ai
도움말 페이지 URL https://github.com/pas1ko/meeper/issues
개인정보 보호 정책 페이지 URL https://vigvam.app/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.5.1",
    "name": "Meeper - transcribe & summarize Meets",
    "short_name": "Meeper",
    "description": "Transcriptions, summary and more using ChatGPT and Whisper AI for meetings and any browser tab.",
    "background": {
        "service_worker": "assets\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*-*-*"
            ],
            "js": [
                "assets\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Meeper",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Command+Shift+9"
            }
        },
        "run-meeper": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Run Meeper on the current page."
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; base-uri 'self'; form-action 'self'; frame-ancestors 'self';"
    },
    "host_permissions": [
        "*:\/\/meet.google.com\/*-*-*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*",
        ""
    ],
    "default_locale": "en",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-128.png",
        "128": "icon-512.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "scripting",
        "tabCapture",
        "contextMenus"
    ]
}