ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
Co je ReGPT?
ReGPT je rozšíření Chrome vyvinuté knafle, a jeho hlavní funkcí je „This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ReGPT
Stáhněte si soubory rozšíření ReGPT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way Základní Informace o Rozšíření
| Název | |
| ID | ndamopilbmdgefbclfmdppakjifdekco |
| Oficiální URL | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
| Popis | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
| Velikost souboru | 21.28 KB |
| Počet instalací | 449 |
| Aktuální Verze | 1.0 |
| Poslední Aktualizace | 2023-05-12 |
| Datum Vydání | 2023-05-12 |
| Vývojář | knafle |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | 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"
}
]
} | |