SaveGPT
Save your ChatGPT conversations
SaveGPTとは何ですか?
SaveGPTはPiyush Santwaniによって開発されたChromeの拡張機能で、その主な機能は「Save your ChatGPT conversations」です。
拡張機能のスクリーンショット
SaveGPT拡張機能のCRXファイルをダウンロード
SaveGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It's a browser extension that auto-saves your ChatGPT conversations and adds a "Chat History" button within the ChatGPT website. This is an indepedent project and is not affiliated with OpenAI or ChatGPT. Website - - https://savegpt.com/
拡張機能の基本情報
名前 | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
公式URL | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
説明 | Save your ChatGPT conversations |
ファイルサイズ | 40.26 KB |
インストール数 | 8,398 |
現在のバージョン | 1.0.30 |
最終更新日 | 2023-04-16 |
公開日 | 2022-12-10 |
評価 | 2.88/5 合計 34 レビュー |
開発者 | Piyush Santwani |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://savegpt.com/ |
プライバシーポリシーページのURL | https://savegpt.com/privacy_policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SaveGPT", "description": "Save your ChatGPT conversations", "icons": { "128": "icons\/history.png", "16": "icons\/history.png", "32": "icons\/history.png", "48": "icons\/history.png" }, "manifest_version": 3, "version": "1.0.30", "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "permissions": [ "storage", "webRequest", "activeTab", "unlimitedStorage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "tooltip.js", "utils.js", "index.js" ], "css": [ "index.css" ], "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_end" }, { "js": [ "utils.js", "twitter.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/*", "download.css" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |