ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
Vad är ReGPT?
ReGPT är en Chrome-tillägg utvecklad av knafle, och dess huvudfunktion är "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way".
Tilläggsskärmbilder
Ladda ner ReGPT-förlängningens CRX-fil
Ladda ner ReGPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way Grundläggande Information om Tillägg
| Namn | |
| ID | ndamopilbmdgefbclfmdppakjifdekco |
| Officiell webbadress | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
| Beskrivning | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
| Filstorlek | 21.28 KB |
| Antal Installationer | 449 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-05-12 |
| Publiceringsdatum | 2023-05-12 |
| Utvecklare | knafle |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
]
} | |