ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
What is ReGPT?
ReGPT is a Chrome extension developed by knafle, and its main feature is "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way".
Extension Screenshots
Download ReGPT Extension CRX File
Download ReGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way
Extension Basic Information
Name | ReGPT |
ID | ndamopilbmdgefbclfmdppakjifdekco |
Official URL | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
Description | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
File Size | 21.28 KB |
Installation Count | 449 |
Current Version | 1.0 |
Last Updated | 2023-05-12 |
Publish Date | 2023-05-12 |
Developer | knafle |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |