ZenMail

Take back control of your email

ما هو ZenMail؟

ZenMail هو إضافة Chrome تم تطويرها بواسطة https://zenmailhq.com، والميزة الرئيسية لها هي "Take back control of your email".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة ZenMail

قم بتنزيل ملفات الامتداد ZenMail بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        **Note: Google seems to be blocking the app for reasons unknown 🤷‍♂️ We have applied to Google again for verification. The extension isn't usable for new users till that is approved.**

ZenMail is a new approach to email -- a way to take back control of your email.

It is inspired by great works of "Hey" team. This extension adds these features directly on top of Gmail.

✨ Features ✨

✅  Email Screener to automatically screen emails from first time or unknown sender -- keep only the emails you care about in Inbox (Inbox Zero 💪)

✅  One click workflows to automatically route incoming emails to **Skip Inbox**, **Feed**, **PaperTrail** or any of your existing labels

✅  Integrated with your current workflow and Gmail labels / filters

✅  Support for multiple gmail/g-suite accounts

✅  100% Privacy: Uses Gmail APIs directly from your browser and no data is transferred outside your browser.


**Privacy**
We care deeply about privacy. We do NOT collect or send any information. All the communication from the chrome extension is done directly from chrome to Google using Gmail APIs. No information about you ever passes through any of our servers. 

Feedback / Bugs: 
Please email [email protected] with any feedback, feature requests or bug reports. 🙏                    

معلومات أساسية عن التمديد

الاسم ZenMail ZenMail
ID kbhafnckenhchoejjiebccaehcnphgja
عنوان URL الرسمي https://chromewebstore.google.com/detail/zenmail/kbhafnckenhchoejjiebccaehcnphgja
الوصف Take back control of your email
حجم الملف 141 KB
عدد التثبيتات 661
النسخة الحالية 0.9.1
آخر تحديث 2021-11-30
تاريخ النشر 2020-07-13
تقييم 5.00/5 مجموع تقييمات 1
المطور https://zenmailhq.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://zenmailhq.com/
عنوان صفحة المساعدة https://forms.gle/Av9skAqz2ArcDa3w7
عنوان صفحة سياسة الخصوصية https://zenmailhq.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Take back control of your email",
    "version": "0.9.1",
    "name": "ZenMail",
    "manifest_version": 2,
    "icons": {
        "128": "img\/zenmail-logo-0724.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5co48yiTvB\/F3a96ZtquBlbANBbMLl\/jXI5HLcXwrJYTMF+q1+reQZzJUrT08Uc3372sl4O2qY3W6Zixijrv7FrLbSMYNO0v\/2fs\/yplHq4i2Rc\/vz1nEqeKxUJSnvVKyQJNLX29yjRMnBj0hfIBs2HXSpb5hMi6iE+qfkRYC\/bYf9neuzAu018CtWLiDgMH7PakoU7nqaX5fXD\/MBMCx61HAgwjkV7OzXeyU3sm+WWPET5oNbcGvZ2hPkc\/JPXv9ve3VVDAoKI42jt7ykCPWDOuuP8Wcai8iJZEEwrMOLA5Lf3m63aDlO1hixAn6utgtdFy005nvTjUO0I+2wu82QIDAQAB",
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "bootstrap.css",
                "style.css"
            ],
            "js": [
                "inject.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "page": "bg.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "img\/zenmail-logo-0724.png",
        "default_title": "ZenMail",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/mail.google.com\/",
        "storage",
        "identity"
    ],
    "oauth2": {
        "client_id": "184627819508-gs1d8gj328bob3k3ddaeta156prakdmf.apps.googleusercontent.com",
        "client_secret": "xR1EfFq3YPwvNs2uhw0W2EBx",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/gmail.labels",
            "https:\/\/www.googleapis.com\/auth\/gmail.settings.basic",
            "https:\/\/www.googleapis.com\/auth\/gmail.modify"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}