Daylight Clock
A location based daylight clock.
Wat is Daylight Clock?
Daylight Clock is een Chrome-extensie ontwikkeld door Arielle Hein, en de belangrijkste functie is "A location based daylight clock.".
Extensie Screenshots
Download het CRX-bestand van de extensie Daylight Clock
Download Daylight Clock-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
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.
Basisinformatie over de Extensie
Naam | |
ID | dcgnpjofnlllngnfmnnimbhpojjimmnn |
Officiële URL | https://chrome.google.com/webstore/detail/daylight-clock/dcgnpjofnlllngnfmnnimbhpojjimmnn |
Beschrijving | A location based daylight clock. |
Bestandsgrootte | 4.18 MB |
Aantal Installaties | 269 |
Huidige Versie | 1.8 |
Laatst Bijgewerkt | 2017-06-21 |
Publicatiedatum | 2017-06-21 |
Beoordeling | 4.60/5 Totaal 10 Beoordelingen |
Ontwikkelaar | Arielle Hein |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |