Daylight Clock
A location based daylight clock.
ما هو Daylight Clock؟
Daylight Clock هو إضافة Chrome تم تطويرها بواسطة Arielle Hein، والميزة الرئيسية لها هي "A location based daylight clock.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Daylight Clock
قم بتنزيل ملفات الامتداد Daylight Clock بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | |
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" ] } |