chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
Hvad er chatGPT screenshot?
chatGPT screenshot er en Chrome-udvidelse udviklet af marc, og dens hovedfunktion er "Take a nice screenshot of the whole chat GPT conversation".
Udvidelsesskærmbilleder
Download chatGPT screenshot-udvidelses-CRX-fil
Download chatGPT screenshot-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
Officiel URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Beskrivelse | Take a nice screenshot of the whole chat GPT conversation |
Filstørrelse | 5.94 KB |
Antal Installationer | 3,587 |
Nuværende Version | 0.2 |
Senest Opdateret | 2023-04-15 |
Udgivelsesdato | 2022-12-05 |
Bedømmelse | 3.44/5 Samlet 9 Bedømmelser |
Udvikler | marc |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Understøttede Sprog | 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" ] } ] } |