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.」です。
拡張機能のスクリーンショット
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!
拡張機能の基本情報
名前 | |
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\/*" ] } |