ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
ReGPTとは何ですか?
ReGPTはknafleによって開発されたChromeの拡張機能で、その主な機能は「This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way」です。
拡張機能のスクリーンショット
ReGPT拡張機能のCRXファイルをダウンロード
ReGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way
拡張機能の基本情報
名前 | ReGPT |
ID | ndamopilbmdgefbclfmdppakjifdekco |
公式URL | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
説明 | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
ファイルサイズ | 21.28 KB |
インストール数 | 449 |
現在のバージョン | 1.0 |
最終更新日 | 2023-05-12 |
公開日 | 2023-05-12 |
開発者 | knafle |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReGPT", "version": "1.0", "description": "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way", "options_page": "options.html", "action": { "default_icon": "128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/api.openai.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ], "run_at": "document_end" } ] } |