GPT Vokal
Give voice instructions to ChatGPT.
Vad är GPT Vokal?
GPT Vokal är en Chrome-tillägg utvecklad av Nqedile, och dess huvudfunktion är "Give voice instructions to ChatGPT.".
Tilläggsskärmbilder
Ladda ner GPT Vokal-förlängningens CRX-fil
Ladda ner GPT Vokal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
Officiell webbadress | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
Beskrivning | Give voice instructions to ChatGPT. |
Filstorlek | 43.5 KB |
Antal Installationer | 39 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2023-07-17 |
Publiceringsdatum | 2023-02-05 |
Utvecklare | Nqedile |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |