Yahoo! Mail Notifier

Notifies you when new emails arrived in your Yahoo! Mail box

Yahoo! Mail Notifier란 무엇입니까?

Yahoo! Mail Notifier은(는) def00111에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notifies you when new emails arrived in your Yahoo! Mail box"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Yahoo! Mail Notifier 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You must be logged into Yahoo for this add-on to work!

Warning:
Don't remove permission for "https://mail.yahoo.com/*" (the add-on won't work anymore).

How to update the add-on:
Remove old version first then install new version.

The difference between this and the other add-ons are:
This add-on only fetches a small data (kb) instead of the full page (mb) what the other add-ons are doing. For this reason, i decided to create my own notifier for Yahoo.

Icon made by Freepik from www.flaticon.com.                    

확장 프로그램 기본 정보

이름 Yahoo! Mail Notifier Yahoo! Mail Notifier
ID fcdjpfkcoogpjflflpblocbgnlodfcjp
공식 URL https://chromewebstore.google.com/detail/yahoo-mail-notifier/fcdjpfkcoogpjflflpblocbgnlodfcjp
설명 Notifies you when new emails arrived in your Yahoo! Mail box
파일 크기 51.34 KB
설치 횟수 10,000
현재 버전 1.2.5
최근 업데이트 2023-11-28
출시 날짜 2020-03-12
평점 2.71/5 총 21 개의 평점
개발자 def00111
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/def00111/yahoo-mail-notifier/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "def00111",
    "manifest_version": 3,
    "name": "Yahoo! Mail Notifier",
    "version": "1.2.5",
    "minimum_chrome_version": "116",
    "description": "Notifies you when new emails arrived in your Yahoo! Mail box",
    "icons": {
        "64": "icons\/email-64.png",
        "128": "icons\/email-128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/email-16.png",
            "32": "icons\/email-32.png",
            "64": "icons\/email-64.png"
        },
        "default_title": "Yahoo! Mail Notifier"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "sw.js"
    },
    "permissions": [
        "alarms",
        "contextMenus",
        "storage",
        "declarativeNetRequest",
        "tabs",
        "scripting",
        "cookies",
        "webRequest",
        "offscreen",
        "notifications"
    ],
    "optional_permissions": [
        "background"
    ],
    "host_permissions": [
        "https:\/\/mail.yahoo.com\/"
    ]
}