Daylight for Google Calendar

Visualizes daylight hours in Google Calendar for your current location.

什麼是Daylight for Google Calendar?

Daylight for Google Calendar是由masyukun開發的Chrome擴展程式,該擴展的主要功能是“Visualizes daylight hours in Google Calendar for your current location.”。

擴展截圖

screenshot

下載Daylight for Google Calendar擴展crx文件

下載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
官方網址 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\/*"
    ]
}