chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
Co je chatGPT screenshot?
chatGPT screenshot je rozšíření Chrome vyvinuté marc, a jeho hlavní funkcí je „Take a nice screenshot of the whole chat GPT conversation“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření chatGPT screenshot
Stáhněte si soubory rozšíření chatGPT screenshot ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
Oficiální URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Popis | Take a nice screenshot of the whole chat GPT conversation |
Velikost souboru | 5.94 KB |
Počet instalací | 3,587 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2023-04-15 |
Datum Vydání | 2022-12-05 |
Hodnocení | 3.44/5 Celkem 9 Hodnocení |
Vývojář | marc |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Podporované Jazyky | 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" ] } ] } |