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 |
Eメール | [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" ] } ] } |