Daylight for Google Calendar
Visualizes daylight hours in Google Calendar for your current location.
Wat is Daylight for Google Calendar?
Daylight for Google Calendar is een Chrome-extensie ontwikkeld door masyukun, en de belangrijkste functie is "Visualizes daylight hours in Google Calendar for your current location.".
Extensie Screenshots
Download het CRX-bestand van de extensie Daylight for Google Calendar
Download Daylight for Google Calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | |
ID | iekoigdlnhmafemfoamlnmhihmcfcklk |
Officiële URL | https://chrome.google.com/webstore/detail/daylight-for-google-calen/iekoigdlnhmafemfoamlnmhihmcfcklk |
Beschrijving | Visualizes daylight hours in Google Calendar for your current location. |
Bestandsgrootte | 185 KB |
Aantal Installaties | 849 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2014-09-09 |
Publicatiedatum | 2014-09-09 |
Beoordeling | 2.36/5 Totaal 11 Beoordelingen |
Ontwikkelaar | masyukun |
Betalingswijze | free |
Extensiewebsite | http://matthewroyal.com/blog/ |
Help Pagina-URL | https://github.com/masyukun/google-calendar-daylight-extension/issues |
Ondersteunde Talen | 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\/*" ] } |