Whisper to ChatGPT

Prompt with your voice to ChatGPT in your Chrome browser using Whisper API with a button click.

O que é Whisper to ChatGPT?

Whisper to ChatGPT é uma extensão do Chrome desenvolvida por Ordinath, e sua principal característica é "Prompt with your voice to ChatGPT in your Chrome browser using Whisper API with a button click.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Whisper to ChatGPT

Baixe arquivos de extensão Whisper to ChatGPT 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

                        # 🎙️ Voice-to-Text ChatGPT: Transcribe with Whisper API 🚀

Elevate your ChatGPT experience with Voice-to-Text ChatGPT extension! Seamlessly record your voice and transcribe it using OpenAI's Whisper API - all within your Chrome browser. Just click, record, and transcribe! 🎉

This extension is now a React application and open-source! 🎉 Check out the repository on GitHub: https://github.com/Ordinath/Whisper_to_ChatGPT

## ✨ Features

- 🎤 Record your voice and transcribe it using the powerful Whisper API
- ⚡ Configurable shortcut button to quickly activate the microphone
- 🌐 Use the extension with main inputs on chat.openai.com and edit-inputs
- 🔧 Customize the prompt for better API voice recognition results
- 👁️ Clean and user-friendly interface with an eye-catching mic button
- 🔄 Support for multiple Whisper API prompts for versatile transcription contexts
- 🌍 Implicit translation support for transcribing and translating your input
- 💾 Download your transcriptions as sound files for further use
- 📌 Snippets feature (in beta) for quickly pasting frequently used text in the ChatGPT text area

## 🔧 How to Run Locally

To run the extension locally in your Chrome browser, follow these steps:

1. Clone or download the repository from GitHub: https://github.com/Ordinath/Whisper_to_ChatGPT
2. Install the dependencies by running npm install in the project folder
3. Run npm run build to build the app for production to the build folder
4. Open Google Chrome and navigate to chrome://extensions
5. Enable "Developer mode" by toggling the switch in the top-right corner
6. Click on "Load unpacked" button and select the build folder created in step 3
7. The extension should now appear in your list of installed extensions

Now you can use Voice-to-Text ChatGPT extension without downloading it from the Chrome Web Store!

## 🔑 API Key Disclaimer

This extension requires an OpenAI account with a valid API key to function properly. OpenAI provides a small amount of free credits for all accounts, which is more than enough to use the Whisper API in ChatGPT and enjoy the extension's features.

## 📣 Feedback and Contributions

We're dedicated to improving this extension and have exciting plans for its future! Give it a try, and share your thoughts - we're always open to feedback and suggestions. Feel free to open issues, submit pull requests, or just reach out with any ideas you have.

😄 Happy recording!

## 🛠️ Development
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

# Available Scripts
1. `npm start` : Runs the app in development mode, open http://localhost:3000 to view it in your browser
2. `npm run build` : Builds the app for production to the build folder
For more information, refer to the [Create React App documentation](https://create-react-app.dev/docs/getting-started/) and [React documentation](https://facebook.github.io/create-react-app/docs/getting-started).                    

Informações Básicas da Extensão

Nome Whisper to ChatGPT Whisper to ChatGPT
ID jdmppbmnffdfhjlddebcelhigiomacfl
URL Oficial https://chromewebstore.google.com/detail/whisper-to-chatgpt/jdmppbmnffdfhjlddebcelhigiomacfl
Descrição Prompt with your voice to ChatGPT in your Chrome browser using Whisper API with a button click.
Tamanho do Arquivo 580 KB
Contagem de Instalações 2,570
Versão Atual 1.2.7
Última Atualização 2023-04-27
Data de Publicação 2023-03-02
Classificação 3.91/5 Total de 22 Avaliações
Desenvolvedor Ordinath
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://openai.com/policies/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Whisper to ChatGPT",
    "version": "1.2.7",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "description": "Prompt with your voice to ChatGPT in your Chrome browser using Whisper API with a button click.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "index.html"
    },
    "permissions": [
        "storage"
    ]
}