Mail.BG Mail Notifier/Checker
Listens for new messages in your Mail.BG mailbox
Co to jest Mail.BG Mail Notifier/Checker?
Mail.BG Mail Notifier/Checker to rozszerzenie Chrome opracowane przez https://mail.bg, a jego główną funkcją jest „Listens for new messages in your Mail.BG mailbox”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mail.BG Mail Notifier/Checker
Pobierz pliki rozszerzeń Mail.BG Mail Notifier/Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension will notify you on new mail arrival. Notifications are immediately pushed to the browser vs. being checked for in predefined intervals. No settings are required - just install the extension. It will not disturb you with any sounds or animation.
Podstawowe informacje o rozszerzeniu
Nazwa | Mail.BG Mail Notifier/Checker |
ID | piebfhjfnpgckpegengbagbhnokbflnc |
Oficjalny URL | https://chromewebstore.google.com/detail/mailbg-mail-notifiercheck/piebfhjfnpgckpegengbagbhnokbflnc |
Opis | Listens for new messages in your Mail.BG mailbox |
Rozmiar pliku | 10.3 KB |
Liczba instalacji | 1,272 |
Aktualna Wersja | 0.7.2 |
Ostatnia Aktualizacja | 2014-12-02 |
Data Publikacji | 2014-12-02 |
Ocena | 3.20/5 Łącznie 30 Oceny |
Deweloper | https://mail.bg |
Typ Płatności | free |
Strona Rozszerzenia | http://mail.bg |
Obsługiwane Języki | en,bg |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mail.BG Mail Notifier\/Checker", "version": "0.7.2", "default_locale": "bg", "description": "__MSG_description__", "background": { "page": "background.html" }, "browser_action": { "default_icon": "mail_bg_inactive.png" }, "icons": { "16": "mail_bg_16.png", "48": "mail_bg_48.png", "128": "mail_bg_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.bg\/*" ], "js": [ "content_script.js" ] }, { "matches": [ "*:\/\/beta.mail.bg\/*" ], "js": [ "content_script.js" ] } ], "permissions": [ "tabs", "notifications", "background", "http:\/\/mail.bg\/", "https:\/\/mail.bg\/", "http:\/\/beta.mail.bg\/", "https:\/\/beta.mail.bg\/" ] } |