chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
Wat is chatGPT screenshot?
chatGPT screenshot is een Chrome-extensie ontwikkeld door marc, en de belangrijkste functie is "Take a nice screenshot of the whole chat GPT conversation".
Extensie Screenshots
Download het CRX-bestand van de extensie chatGPT screenshot
Download chatGPT screenshot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Beschrijving | Take a nice screenshot of the whole chat GPT conversation |
Bestandsgrootte | 5.94 KB |
Aantal Installaties | 3,587 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2023-04-15 |
Publicatiedatum | 2022-12-05 |
Beoordeling | 3.44/5 Totaal 9 Beoordelingen |
Ontwikkelaar | marc |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Ondersteunde Talen | 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" ] } ] } |