ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
Apa itu ReGPT?
ReGPT adalah ekstensi Chrome yang dikembangkan oleh knafle, dan fitur utamanya adalah "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ReGPT
Unduh file ekstensi ReGPT 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
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way
Informasi Dasar Ekstensi
Nama | ReGPT |
ID | ndamopilbmdgefbclfmdppakjifdekco |
URL Resmi | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
Deskripsi | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
Ukuran File | 21.28 KB |
Jumlah Instalasi | 449 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-05-12 |
Tanggal Publikasi | 2023-05-12 |
Pengembang | knafle |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReGPT", "version": "1.0", "description": "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way", "options_page": "options.html", "action": { "default_icon": "128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/api.openai.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ], "run_at": "document_end" } ] } |