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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transcriptions, summary and more using ChatGPT and Whisper AI for meetings and any browser tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meeper - transcribe & summarize Meets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}