Daylight for Google Calendar

Visualizes daylight hours in Google Calendar for your current location.

Daylight for Google Calendarคืออะไร?

Daylight for Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย masyukun และคุณลักษณะหลักของมันคือ "Visualizes daylight hours in Google Calendar for your current location."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Daylight for Google Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Google Calendar is a fantastic tool, but planning events after dark can be a hassle. This extension visualizes the daylight hours for your current location as a yellow background highlight during daylight hours. 

Now you can tell when sunset is at a glance!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Daylight for Google Calendar Daylight for Google Calendar
ID iekoigdlnhmafemfoamlnmhihmcfcklk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/daylight-for-google-calen/iekoigdlnhmafemfoamlnmhihmcfcklk
คำอธิบาย Visualizes daylight hours in Google Calendar for your current location.
ขนาดไฟล์ 185 KB
จำนวนการติดตั้ง 849
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2014-09-09
วันที่เผยแพร่ 2014-09-09
คะแนน 2.36/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา masyukun
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://matthewroyal.com/blog/
URL หน้าช่วยเหลือ https://github.com/masyukun/google-calendar-daylight-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Daylight for Google Calendar",
    "short_name": "Daylight",
    "version": "1.0.2",
    "description": "Visualizes daylight hours in Google Calendar for your current location.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "name": "Daylight for Google Calendar",
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Daylight for Google Calendar"
    },
    "author": "Matthew Royal",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "background.js",
                "daylight.js",
                "jquery.min.js",
                "suncalc\/suncalc.js"
            ],
            "css": [
                "daylight.css"
            ],
            "matches": [
                "http:\/\/www.google.com\/calendar\/*",
                "https:\/\/www.google.com\/calendar\/*",
                "http:\/\/google.com\/calendar\/*",
                "https:\/\/google.com\/calendar\/*"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/masyukun\/google-calendar-daylight-extension",
    "permissions": [
        "tabs",
        "https:\/\/www.google.com\/calendar\/*"
    ]
}