chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
Apa itu chatGPT screenshot?
chatGPT screenshot adalah ekstensi Chrome yang dikembangkan oleh marc, dan fitur utamanya adalah "Take a nice screenshot of the whole chat GPT conversation".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi chatGPT screenshot
Unduh file ekstensi chatGPT screenshot 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
OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool). This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.
Informasi Dasar Ekstensi
Nama | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Deskripsi | Take a nice screenshot of the whole chat GPT conversation |
Ukuran File | 5.94 KB |
Jumlah Instalasi | 3,587 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2023-04-15 |
Tanggal Publikasi | 2022-12-05 |
Penilaian | 3.44/5 Total 9 Penilaian |
Pengembang | marc |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "chatGPT screenshot", "action": [], "manifest_version": 3, "version": "0.2", "description": "Take a nice screenshot of the whole chat GPT conversation", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ] } |