TalkGPT
Talk with chat GPT.
Apa itu TalkGPT?
TalkGPT adalah ekstensi Chrome yang dikembangkan oleh adrianriera, dan fitur utamanya adalah "Talk with chat GPT.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi TalkGPT
Unduh file ekstensi TalkGPT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | TalkGPT |
ID | kcaoomfcilckbelgcbfpnfhcealidfkg |
URL Resmi | https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg |
Deskripsi | Talk with chat GPT. |
Ukuran File | 76.53 KB |
Jumlah Instalasi | 1,171 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2023-04-19 |
Tanggal Publikasi | 2023-04-04 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | adrianriera |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |