Better Google Calendar Alert

Replaces the Google Calendar popup with something less intrusive

什么是Better Google Calendar Alert?

Better Google Calendar Alert是由Jesse Dhillon开发的Chrome扩展程序,该扩展的主要功能是“Replaces the Google Calendar popup with something less intrusive”。

扩展截图

screenshot

下载Better Google Calendar Alert扩展crx文件

下载Better Google Calendar Alert扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}