Better Google Calendar Alert

Replaces the Google Calendar popup with something less intrusive

Co je Better Google Calendar Alert?

Better Google Calendar Alert je rozšíření Chrome vyvinuté Jesse Dhillon, a jeho hlavní funkcí je „Replaces the Google Calendar popup with something less intrusive“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Better Google Calendar Alert

Stáhněte si soubory rozšíření Better Google Calendar Alert ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Better Google Calendar Alert Better Google Calendar Alert
ID ijogfdkhokonapihokncpclfeaohcnfp
Oficiální URL https://chrome.google.com/webstore/detail/better-google-calendar-al/ijogfdkhokonapihokncpclfeaohcnfp
Popis Replaces the Google Calendar popup with something less intrusive
Velikost souboru 53.85 KB
Počet instalací 830
Aktuální Verze 1.0.1
Poslední Aktualizace 2015-11-09
Datum Vydání 2015-11-09
Hodnocení 2.75/5 Celkem 8 Hodnocení
Vývojář Jesse Dhillon
Typ Platby free
Podporované Jazyky 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"
    ]
}