Better Google Calendar Alert

Replaces the Google Calendar popup with something less intrusive

Better Google Calendar Alertคืออะไร?

Better Google Calendar Alert เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jesse Dhillon และคุณลักษณะหลักของมันคือ "Replaces the Google Calendar popup with something less intrusive"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Google Calendar Alert

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}