GPT Vokal
Give voice instructions to ChatGPT.
Cos'è GPT Vokal?
GPT Vokal è un'estensione di Chrome sviluppata da Nqedile, e la sua funzione principale è "Give voice instructions to ChatGPT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GPT Vokal
Scarica i file di estensione GPT Vokal in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows you to send voice prompts to ChatGPT instead of typing your requests. Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.
Informazioni di Base sull'Estensione
Nome | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
URL Ufficiale | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
Descrizione | Give voice instructions to ChatGPT. |
Dimensione del File | 43.5 KB |
Conteggio Installazioni | 39 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2023-07-17 |
Data di Pubblicazione | 2023-02-05 |
Sviluppatore | Nqedile |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT Vokal", "description": "Give voice instructions to ChatGPT.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": ".\/images\/icon16.png", "48": ".\/images\/icon48.png", "128": ".\/images\/icon128.png" }, "background": { "service_worker": ".\/background.js" }, "options_page": ".\/options.html", "action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |