Daylight for Google Calendar

Visualizes daylight hours in Google Calendar for your current location.

Daylight for Google Calendar क्या है?

Daylight for Google Calendar masyukun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visualizes daylight hours in Google Calendar for your current location."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Daylight for Google Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}