Better Google Calendar Alert

Replaces the Google Calendar popup with something less intrusive

Qu'est-ce que Better Google Calendar Alert ?

Better Google Calendar Alert est une extension Chrome développée par Jesse Dhillon, et sa fonction principale est "Replaces the Google Calendar popup with something less intrusive".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Better Google Calendar Alert

Téléchargez les fichiers d'extension Better Google Calendar Alert au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Better Google Calendar Alert Better Google Calendar Alert
ID ijogfdkhokonapihokncpclfeaohcnfp
URL Officiel https://chrome.google.com/webstore/detail/better-google-calendar-al/ijogfdkhokonapihokncpclfeaohcnfp
Description Replaces the Google Calendar popup with something less intrusive
Taille du Fichier 53.85 KB
Nombre d'Installations 830
Version Actuelle 1.0.1
Dernière Mise à Jour 2015-11-09
Date de Publication 2015-11-09
Évaluation 2.75/5 Total 8 Évaluations
Développeur Jesse Dhillon
Type de Paiement free
Langues Prises en Charge 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"
    ]
}