Better Google Calendar Alert
Replaces the Google Calendar popup with something less intrusive
¿Qué es Better Google Calendar Alert?
Better Google Calendar Alert es una extensión de Chrome desarrollada por Jesse Dhillon, y su función principal es "Replaces the Google Calendar popup with something less intrusive".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Better Google Calendar Alert
Descarga archivos de extensión Better Google Calendar Alert 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
For people who hate how Google Calendar's alerts steal the focused tab and prevent you from clicking on anything until you've acknowledged the alert. This shows a nice, non-intrusive window, plays a sound (maximum of once per five minutes), and flashes an icon on the calendar tab. It stacks up multiple alerts, so you can dismiss them all at once or go through them one-by-one. It's pretty much how things should have been to begin with.
Información Básica de la Extensión
Nombre | |
ID | ijogfdkhokonapihokncpclfeaohcnfp |
URL Oficial | https://chrome.google.com/webstore/detail/better-google-calendar-al/ijogfdkhokonapihokncpclfeaohcnfp |
Descripción | Replaces the Google Calendar popup with something less intrusive |
Tamaño del Archivo | 53.85 KB |
Cantidad de Instalaciones | 830 |
Versión Actual | 1.0.1 |
Última Actualización | 2015-11-09 |
Fecha de Publicación | 2015-11-09 |
Calificación | 2.75/5 Total de 8 Calificaciones |
Desarrollador | Jesse Dhillon |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Google Calendar Alert", "short_name": "Better Alert", "description": "Replaces the Google Calendar popup with something less intrusive", "version": "1.0.1", "icons": { "16": "gcal-alert16.png", "32": "gcal-alert32.png", "48": "gcal-alert48.png", "64": "gcal-alert64.png", "128": "gcal-alert128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "css": [ "gcal-alert.css" ], "js": [ "gcal-alert.js" ] } ], "web_accessible_resources": [ "icon-bell.svg", "sound-notification.ogg", "favicon.ico" ], "permissions": [ "activeTab" ] } |