Whispering

Seamlessly integrate voice-to-text transcriptions on ChatGPT and anywhere on the web—powered by OpenAI's Whisper API.

ما هو Whispering؟

Whispering هو إضافة Chrome تم تطويرها بواسطة https://bradenwong.com، والميزة الرئيسية لها هي "Seamlessly integrate voice-to-text transcriptions on ChatGPT and anywhere on the web—powered by OpenAI's Whisper API.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Whispering

قم بتنزيل ملفات الامتداد Whispering بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Boost your productivity with Whispering, a lightweight open-source Chrome extension that seamlessly integrates with ChatGPT and provides speech-to-text transcription anywhere on the web—powered by OpenAI's Whisper API. 🗣️

🔑 Key Features:

- 🎙️ Seamless integration with ChatGPT: Add a convenient recording button to transcribe your voice directly within the chat.
- 🌍 Record and transcribe across any website: With the global keyboard shortcut feature (default "Control+Shift+x" or "Command+Shift+x"), Whispering empowers you to use voice input effortlessly on any webpage.
- 🎯 Easy to use: A user-friendly interface and simple installation process make Whispering an easy-to-use productivity tool.
- 💪 Built using reliable technologies: Whispering combines the strengths of Plasmo, Svelte, Tailwind CSS, and Chrome API, ensuring excellent performance and stability.
- 🔒 Privacy and security measures: Whispering is free and open sourced and committed to protecting your data by taking necessary privacy and security measures.

Whispering offers an efficient and versatile solution for all your voice-to-text needs on the web, enabling you to use the advanced capabilities of OpenAI's Whisper API in your daily workflow. Give your productivity a boost 🚀, thank you for using Whispering, and happy writing!                    

معلومات أساسية عن التمديد

الاسم Whispering Whispering
ID oilbfihknpdbpfkcncojikmooipnlglo
عنوان URL الرسمي https://chromewebstore.google.com/detail/whispering/oilbfihknpdbpfkcncojikmooipnlglo
الوصف Seamlessly integrate voice-to-text transcriptions on ChatGPT and anywhere on the web—powered by OpenAI's Whisper API.
حجم الملف 205 KB
عدد التثبيتات 869
النسخة الحالية 3.4.1
آخر تحديث 2023-07-24
تاريخ النشر 2023-06-02
تقييم 4.11/5 مجموع تقييمات 18
المطور https://bradenwong.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/braden-w/whispering
عنوان صفحة المساعدة https://github.com/braden-w/whispering/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.6c567d50.png",
        "32": "icon32.plasmo.76b92899.png",
        "48": "icon48.plasmo.aced7582.png",
        "64": "icon64.plasmo.8bb5e6e0.png",
        "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.6c567d50.png",
            "32": "icon32.plasmo.76b92899.png",
            "48": "icon48.plasmo.aced7582.png",
            "64": "icon64.plasmo.8bb5e6e0.png",
            "128": "icon128.plasmo.3c1ed2d2.png"
        },
        "default_popup": "popup.html"
    },
    "version": "3.4.1",
    "author": "Braden Wong",
    "name": "Whispering",
    "description": "Seamlessly integrate voice-to-text transcriptions on ChatGPT and anywhere on the web\u2014powered by OpenAI's Whisper API.",
    "background": {
        "service_worker": "background.93e42914.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "chatGptButton.9b775fef.js"
            ],
            "css": []
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "globalToggleRecording.dfe1b4ad.js"
            ],
            "exclude_matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "css": []
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "toggleRecording.b4204778.js"
            ],
            "css": []
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "commands": {
        "toggle-recording": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Toggle recording"
        }
    }
}