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 |
官方網址 | 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 |
電子郵箱 | [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" } ] } |