Daylight Clock

A location based daylight clock.

Qu'est-ce que Daylight Clock ?

Daylight Clock est une extension Chrome développée par Arielle Hein, et sa fonction principale est "A location based daylight clock.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Daylight Clock

Téléchargez les fichiers d'extension Daylight Clock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Daylight Clock Daylight Clock
ID dcgnpjofnlllngnfmnnimbhpojjimmnn
URL Officiel https://chrome.google.com/webstore/detail/daylight-clock/dcgnpjofnlllngnfmnnimbhpojjimmnn
Description A location based daylight clock.
Taille du Fichier 4.18 MB
Nombre d'Installations 269
Version Actuelle 1.8
Dernière Mise à Jour 2017-06-21
Date de Publication 2017-06-21
Évaluation 4.60/5 Total 10 Évaluations
Développeur Arielle Hein
Type de Paiement free
Langues Prises en Charge 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"
    ]
}