Email Notifier

A lite notifier that works with Gmail™, Yahoo, Live, iCloud, Mail.com, and GMX

Email Notifierคืออะไร?

Email Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Benni และคุณลักษณะหลักของมันคือ "A lite notifier that works with Gmail™, Yahoo, Live, iCloud, Mail.com, and GMX"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Email Notifier

ดาวน์โหลดไฟล์ส่วนขยาย Email Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Email Notifier is an extension that gives you access to the top 6 email providers. Besides, you get badge notifications for all new emails.

To start getting notifications for the below email list, you must log in at least once for each email provider. Please note that multiple accounts for email providers are not supported.

1. Gmail - available across all your devices. Gmail helps you stay organized by sorting your mails by type.
2. Yahoo - one of the best email services with plenty of options to offer.
3. Live - a free modern email service from Microsoft.
4. GMX - a free email service provided by GMX (Global mail exchange, in Germany).
5. iCloud - free email service from Apple with plenty of storage and IMAP access.
6. Mail.com - free email accounts, unlimited storage, mobile device support, spam protection.

To report bugs, please visit the addon's homepage and fill the bug report form (https://mybrowseraddon.com/email-notifier.html).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Email Notifier Email Notifier
ID akhfkpnhebiocdilofmaigoggiopgbbd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/email-notifier/akhfkpnhebiocdilofmaigoggiopgbbd
คำอธิบาย A lite notifier that works with Gmail™, Yahoo, Live, iCloud, Mail.com, and GMX
ขนาดไฟล์ 75.71 KB
จำนวนการติดตั้ง 8,669
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-04-20
วันที่เผยแพร่ 2018-09-24
คะแนน 3.15/5 รวมทั้งหมด 74 คะแนน
ผู้พัฒนา Benni
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/email-notifier.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/email-notifier.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.1",
    "manifest_version": 3,
    "name": "Email Notifier",
    "short_name": "email-notifier",
    "homepage_url": "https:\/\/mybrowseraddon.com\/email-notifier.html",
    "description": "A lite notifier that works with Gmail\u2122, Yahoo, Live, iCloud, Mail.com, and GMX",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "host_permissions": [
        "*:\/\/*.gmx.com\/*",
        "*:\/\/*.live.com\/*",
        "*:\/\/*.mail.com\/*",
        "*:\/\/*.yahoo.com\/*",
        "*:\/\/*.icloud.com\/*",
        "*:\/\/mail.google.com\/*"
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest",
        "notifications",
        "declarativeNetRequest"
    ],
    "action": {
        "default_title": "Email Notifier",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ],
            "matches": [
                "*:\/\/*.gmx.com\/*",
                "*:\/\/*.mail.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}