Ellie: Your Professional AI Email Assistant

Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.

Ellie: Your Professional AI Email Assistant란 무엇입니까?

Ellie: Your Professional AI Email Assistant은(는) https://tryellie.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Ellie: Your Professional AI Email Assistant 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of spending endless hours in your inbox? Meet Ellie, your intelligent email sidekick trained to reply to emails in your unique writing style!

⭐ Why Ellie? ⭐

✍️ Personalized Writing Style - 
Ellie isn't just any email assistant; it will learn from your sent emails and craft replies that sound like you, not a robot.

👨‍💼 Custom Roles
You can teach Ellie to handle specific scenarios like a pro. Define custom roles like "Customer Support" or "Sales" and provide tailored instructions. Whether it's outlining your 90-day refund policy, upselling a product, or talking like a pirate, Ellie will know exactly how to reply.

🧑‍🎓 Dynamic Learning
Elevate Ellie's knowledge base by feeding the AI information from websites or files. Ideal for replying to customer support queries or technical questions.

👨‍💻 Platform Agnostic - 
While Ellie works natively with Gmail and Fastmail, you can use it in any email client with a simple click on the extension button.

🚀

Transform the way you manage emails and save precious time. Install Ellie and experience the future of email today!                    

확장 프로그램 기본 정보

이름 Ellie: Your Professional AI Email Assistant Ellie: Your Professional AI Email Assistant
ID mhcnlcilgicfodlpjcacgglchmpoojcp
공식 URL https://chromewebstore.google.com/detail/ellie-your-professional-a/mhcnlcilgicfodlpjcacgglchmpoojcp
설명 Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.
파일 크기 361 KB
설치 횟수 8,660
현재 버전 2.2.0
최근 업데이트 2024-03-04
출시 날짜 2022-12-18
평점 3.84/5 총 19 개의 평점
개발자 https://tryellie.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://tryellie.com
도움말 페이지 URL https://tryellie.com/help
개인정보 보호 정책 페이지 URL https://ellieai.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ellie: Your Professional AI Email Assistant",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "version": "2.2.0",
    "description": "Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.",
    "permissions": [
        "scripting",
        "storage",
        "activeTab"
    ],
    "options_ui": {
        "browser_style": true,
        "page": "src\/options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.fastmail.com\/mail\/*",
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "src\/clients\/common\/index.js"
            ],
            "css": [
                "src\/clients\/common\/common.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "src\/clients\/gmail\/libs\/jquery-3.6.1.min.js",
                "src\/clients\/gmail\/libs\/gmail.js",
                "src\/clients\/gmail\/libs\/postal.js"
            ],
            "css": [
                "src\/clients\/gmail\/styles.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "src\/clients\/gmail\/index.js"
            ],
            "css": [
                "src\/clients\/gmail\/styles.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/app.fastmail.com\/mail\/*"
            ],
            "js": [
                "src\/clients\/fastmail\/index.js"
            ],
            "css": [
                "src\/clients\/fastmail\/styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    }
}