Mail.BG Mail Notifier/Checker
Listens for new messages in your Mail.BG mailbox
Cos'è Mail.BG Mail Notifier/Checker?
Mail.BG Mail Notifier/Checker è un'estensione di Chrome sviluppata da https://mail.bg, e la sua funzione principale è "Listens for new messages in your Mail.BG mailbox".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mail.BG Mail Notifier/Checker
Scarica i file di estensione Mail.BG Mail Notifier/Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Mail.BG Mail Notifier/Checker |
ID | piebfhjfnpgckpegengbagbhnokbflnc |
URL Ufficiale | https://chromewebstore.google.com/detail/mailbg-mail-notifiercheck/piebfhjfnpgckpegengbagbhnokbflnc |
Descrizione | Listens for new messages in your Mail.BG mailbox |
Dimensione del File | 10.3 KB |
Conteggio Installazioni | 1,272 |
Versione Corrente | 0.7.2 |
Ultimo Aggiornamento | 2014-12-02 |
Data di Pubblicazione | 2014-12-02 |
Valutazione | 3.20/5 Totale 30 Valutazioni |
Sviluppatore | https://mail.bg |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://mail.bg |
Lingue Supportate | 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\/" ] } |