Yahoo! Mail Notifier
Notifies you when new emails arrived in your Yahoo! Mail box
¿Qué es Yahoo! Mail Notifier?
Yahoo! Mail Notifier es una extensión de Chrome desarrollada por def00111, y su función principal es "Notifies you when new emails arrived in your Yahoo! Mail box".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Yahoo! Mail Notifier
Descarga archivos de extensión Yahoo! Mail Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Yahoo! Mail Notifier |
ID | fcdjpfkcoogpjflflpblocbgnlodfcjp |
URL Oficial | https://chromewebstore.google.com/detail/yahoo-mail-notifier/fcdjpfkcoogpjflflpblocbgnlodfcjp |
Descripción | Notifies you when new emails arrived in your Yahoo! Mail box |
Tamaño del Archivo | 51.34 KB |
Cantidad de Instalaciones | 10,000 |
Versión Actual | 1.2.5 |
Última Actualización | 2023-11-28 |
Fecha de Publicación | 2020-03-12 |
Calificación | 2.71/5 Total de 21 Calificaciones |
Desarrollador | def00111 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/def00111/yahoo-mail-notifier/issues |
Idiomas Soportados | 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\/" ] } |