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文件

下载Meeper - transcribe & summarize Meets扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}