Daylight Clock
A location based daylight clock.
What is Daylight Clock?
Daylight Clock is a Chrome extension developed by Arielle Hein, and its main feature is "A location based daylight clock.".
Extension Screenshots
Download Daylight Clock Extension CRX File
Download Daylight Clock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A daylight clock that provides a dynamic expression of time based on the period of daylight for your current location. This extensions appears in the background of the browser window whenever a new tab is opened.
Extension Basic Information
Name | |
ID | dcgnpjofnlllngnfmnnimbhpojjimmnn |
Official URL | https://chrome.google.com/webstore/detail/daylight-clock/dcgnpjofnlllngnfmnnimbhpojjimmnn |
Description | A location based daylight clock. |
File Size | 4.18 MB |
Installation Count | 269 |
Current Version | 1.8 |
Last Updated | 2017-06-21 |
Publish Date | 2017-06-21 |
Rating | 4.60/5 Total 10 Ratings |
Developer | Arielle Hein |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Daylight Clock", "description": "A location based daylight clock.", "version": "1.8", "chrome_url_overrides": { "newtab": "daylight.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "js": [ "jquery-1.11.3.min.js", "clock.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "geolocation", "contextMenus", "storage" ] } |