Re:GPT — AI-Powered Email Assistant

OpenAI ChatGPT integration for Gmail & Outlook — Prefill email replies and leverage GPT's power to write quality emails faster.

Re:GPT — AI-Powered Email Assistant란 무엇입니까?

Re:GPT — AI-Powered Email Assistant은(는) @ybouane에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OpenAI ChatGPT integration for Gmail & Outlook — Prefill email replies and leverage GPT's power to write quality emails faster."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Re:GPT — AI-Powered Email Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Re:GPT is your indispensable AI-powered email assistant. 
It integrates ChatGPT with Gmail and Outlook. Re:GPT allows you to compose high-quality messages swiftly. Say goodbye to email writer's block and hello to enhanced productivity.

Whether you want to maintain a professional tone, add a touch of humor, or streamline your communication, Re:GPT has you covered. Install it now and experience the future of email writing – smarter, faster, and more efficient than ever before.

Elevate your email game with Re:GPT:

- Speed up email composition with AI-generated content.
- Customize your email style, from casual to formal, to match your needs.
- Seamlessly integrate Re:GPT into Gmail and Outlook.
- Choose from flexible pricing plans to suit your email productivity requirements. Get started today and discover a world of effortless email communication.                    

확장 프로그램 기본 정보

이름 Re:GPT — AI-Powered Email Assistant Re:GPT — AI-Powered Email Assistant
ID pfejjngcceifejbcingpgcklecmchbli
공식 URL https://chromewebstore.google.com/detail/regpt-%E2%80%94-ai-powered-email/pfejjngcceifejbcingpgcklecmchbli
설명 OpenAI ChatGPT integration for Gmail & Outlook — Prefill email replies and leverage GPT's power to write quality emails faster.
파일 크기 464 KB
설치 횟수 4,650
현재 버전 1.0.8
최근 업데이트 2023-11-15
출시 날짜 2023-10-09
평점 5.00/5 총 3 개의 평점
개발자 @ybouane
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://re-gpt.email
개인정보 보호 정책 페이지 URL https://re-gpt.email/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Re:GPT \u2014 AI-Powered Email Assistant",
    "version": "1.0.8",
    "manifest_version": 3,
    "description": "OpenAI ChatGPT integration for Gmail & Outlook \u2014 Prefill email replies and leverage GPT's power to write quality emails faster.",
    "homepage_url": "http:\/\/re-gpt.email",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "action": {
        "default_icon": "icons\/icon128-transparent.png",
        "default_popup": "src\/popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "src\/background\/service_worker.js",
        "type": "module"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/mail.google.com\/*",
            "https:\/\/outlook.live.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/outlook.live.com\/*"
            ],
            "js": [
                "src\/inject\/idInjector.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "src\/inject\/common.js",
                "src\/inject\/injectGmail.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "world": "MAIN"
        },
        {
            "matches": [
                "https:\/\/outlook.live.com\/*"
            ],
            "js": [
                "src\/inject\/common.js",
                "src\/inject\/injectOutlook.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "world": "MAIN"
        }
    ]
}