GPT Vokal
Give voice instructions to ChatGPT.
Wat is GPT Vokal?
GPT Vokal is een Chrome-extensie ontwikkeld door Nqedile, en de belangrijkste functie is "Give voice instructions to ChatGPT.".
Extensie Screenshots
Download het CRX-bestand van de extensie GPT Vokal
Download GPT Vokal-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
Officiële URL | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
Beschrijving | Give voice instructions to ChatGPT. |
Bestandsgrootte | 43.5 KB |
Aantal Installaties | 39 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2023-07-17 |
Publicatiedatum | 2023-02-05 |
Ontwikkelaar | Nqedile |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } ] } |