Daylight Clock

A location based daylight clock.

Daylight Clockとは何ですか?

Daylight ClockはArielle Heinによって開発されたChromeの拡張機能で、その主な機能は「A location based daylight clock.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Daylight Clock拡張機能のCRXファイルをダウンロード

Daylight Clock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Daylight Clock Daylight Clock
ID dcgnpjofnlllngnfmnnimbhpojjimmnn
公式URL https://chrome.google.com/webstore/detail/daylight-clock/dcgnpjofnlllngnfmnnimbhpojjimmnn
説明 A location based daylight clock.
ファイルサイズ 4.18 MB
インストール数 269
現在のバージョン 1.8
最終更新日 2017-06-21
公開日 2017-06-21
評価 4.60/5 合計 10 レビュー
開発者 Arielle Hein
支払い方法 free
対応言語 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"
    ]
}