Daylight for Google Calendar

Visualizes daylight hours in Google Calendar for your current location.

Co to jest Daylight for Google Calendar?

Daylight for Google Calendar to rozszerzenie Chrome opracowane przez masyukun, a jego główną funkcją jest „Visualizes daylight hours in Google Calendar for your current location.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Daylight for Google Calendar

Pobierz pliki rozszerzeń Daylight for Google Calendar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Daylight for Google Calendar Daylight for Google Calendar
ID iekoigdlnhmafemfoamlnmhihmcfcklk
Oficjalny URL https://chrome.google.com/webstore/detail/daylight-for-google-calen/iekoigdlnhmafemfoamlnmhihmcfcklk
Opis Visualizes daylight hours in Google Calendar for your current location.
Rozmiar pliku 185 KB
Liczba instalacji 849
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2014-09-09
Data Publikacji 2014-09-09
Ocena 2.36/5 Łącznie 11 Oceny
Deweloper masyukun
Typ Płatności free
Strona Rozszerzenia http://matthewroyal.com/blog/
Adres URL Strony Pomocy https://github.com/masyukun/google-calendar-daylight-extension/issues
Obsługiwane Języki 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\/*"
    ]
}