chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
什么是chatGPT screenshot?
chatGPT screenshot是由marc开发的Chrome扩展程序,该扩展的主要功能是“Take a nice screenshot of the whole chat GPT conversation”。
扩展截图
下载chatGPT screenshot扩展crx文件
下载chatGPT screenshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
官方URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
简介 | Take a nice screenshot of the whole chat GPT conversation |
文件大小 | 5.94 KB |
安装次数 | 3,587 |
当前版本 | 0.2 |
更新时间 | 2023-04-15 |
上架时间 | 2022-12-05 |
评分 | 3.44/5 共9次评分 |
开发者 | marc |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
支持的语言 | 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" ] } ] } |