Daylight Clock

A location based daylight clock.

Daylight Clockคืออะไร?

Daylight Clock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arielle Hein และคุณลักษณะหลักของมันคือ "A location based daylight clock."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Daylight Clock

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}