Better Google Calendar Alert

Replaces the Google Calendar popup with something less intrusive

Better Google Calendar Alert क्या है?

Better Google Calendar Alert Jesse Dhillon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces the Google Calendar popup with something less intrusive"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Google Calendar Alert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Better Google Calendar Alert Better Google Calendar Alert
ID ijogfdkhokonapihokncpclfeaohcnfp
आधिकारिक URL https://chrome.google.com/webstore/detail/better-google-calendar-al/ijogfdkhokonapihokncpclfeaohcnfp
विवरण Replaces the Google Calendar popup with something less intrusive
फ़ाइल का आकार 53.85 KB
स्थापना संख्या 830
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2015-11-09
प्रकाशन तिथि 2015-11-09
रेटिंग 2.75/5 कुल 8 रेटिंग्स
डेवलपर Jesse Dhillon
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}