TalkGPT
Talk with chat GPT.
Cos'è TalkGPT?
TalkGPT è un'estensione di Chrome sviluppata da adrianriera, e la sua funzione principale è "Talk with chat GPT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TalkGPT
Scarica i file di estensione TalkGPT 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
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.
Informazioni di Base sull'Estensione
Nome | TalkGPT |
ID | kcaoomfcilckbelgcbfpnfhcealidfkg |
URL Ufficiale | https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg |
Descrizione | Talk with chat GPT. |
Dimensione del File | 76.53 KB |
Conteggio Installazioni | 1,171 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2023-04-19 |
Data di Pubblicazione | 2023-04-04 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | adrianriera |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |