TalkGPT
Talk with chat GPT.
Wat is TalkGPT?
TalkGPT is een Chrome-extensie ontwikkeld door adrianriera, en de belangrijkste functie is "Talk with chat GPT.".
Extensie Screenshots
Download het CRX-bestand van de extensie TalkGPT
Download TalkGPT-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
Convert your voice to text and automatically send it to chat GPT. When he has answered you, you will hear the text of his answer in the language in which you have configured your browser.
Basisinformatie over de Extensie
Naam | TalkGPT |
ID | kcaoomfcilckbelgcbfpnfhcealidfkg |
Officiële URL | https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg |
Beschrijving | Talk with chat GPT. |
Bestandsgrootte | 76.53 KB |
Aantal Installaties | 1,171 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2023-04-19 |
Publicatiedatum | 2023-04-04 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | adrianriera |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TalkGPT", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.0.1", "action": { "default_icon": "assets\/icon-r.png", "default_popup": "index.html" }, "permissions": [ "activeTab" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content-script.js" ] } ], "icons": { "128": "assets\/icon.png" } } |