Daylight for Google Calendar
Visualizes daylight hours in Google Calendar for your current location.
Daylight for Google Calendar là gì?
Daylight for Google Calendar là một tiện ích mở rộng Chrome được phát triển bởi masyukun, và tính năng chính của nó là "Visualizes daylight hours in Google Calendar for your current location.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Daylight for Google Calendar
Tải xuống các tệp mở rộng Daylight for Google Calendar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | iekoigdlnhmafemfoamlnmhihmcfcklk |
URL Chính Thức | https://chrome.google.com/webstore/detail/daylight-for-google-calen/iekoigdlnhmafemfoamlnmhihmcfcklk |
Mô tả | Visualizes daylight hours in Google Calendar for your current location. |
Kích Thước Tệp | 185 KB |
Số Lần Cài Đặt | 849 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2014-09-09 |
Ngày Phát Hành | 2014-09-09 |
Đánh Giá | 2.36/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | masyukun |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://matthewroyal.com/blog/ |
URL Trang Trợ Giúp | https://github.com/masyukun/google-calendar-daylight-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |