'Photo of the day' Clock
Simple extension that shows 'Photo of the day' on the 'New Tab' page with a digital clock.
¿Qué es 'Photo of the day' Clock?
'Photo of the day' Clock es una extensión de Chrome desarrollada por kemunpus, y su función principal es "Simple extension that shows 'Photo of the day' on the 'New Tab' page with a digital clock.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión 'Photo of the day' Clock
Descarga archivos de extensión 'Photo of the day' Clock en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Simple light-weight Chrome extension that shows beautiful 'Photo of the day' on the 'New Tab' page with a digital clock.
Currently, Wikimedia Commons 'Picture of the day', Bing 'Image of the Day' and NASA 'Astronomy Picture of the Day' are supported.
No ads, harmful behavior, and unnecessary network accesses. Very small and clean program that discloses all source codes as the open source project. Please visit for more details. Información Básica de la Extensión
| Nombre | |
| ID | kfokfhaepfjlmbfnmjgiolodammikojh |
| URL Oficial | https://chromewebstore.google.com/detail/photo-of-the-day-clock/kfokfhaepfjlmbfnmjgiolodammikojh |
| Descripción | Simple extension that shows 'Photo of the day' on the 'New Tab' page with a digital clock. |
| Tamaño del Archivo | 12.61 KB |
| Cantidad de Instalaciones | 597 |
| Versión Actual | 2.0.2 |
| Última Actualización | 2023-08-15 |
| Fecha de Publicación | 2019-03-09 |
| Calificación | 4.50/5 Total de 4 Calificaciones |
| Desarrollador | kemunpus |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Idiomas Soportados | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "2.0.2",
"author": "kemunpus",
"name": "'Photo of the day' Clock",
"short_name": "PotdClock",
"description": "__MSG_description__",
"default_locale": "en",
"offline_enabled": true,
"icons": {
"128": "image\/icon-128.png"
},
"chrome_url_overrides": {
"newtab": "html\/newtab.html"
},
"background": {
"service_worker": "js\/background.js"
},
"options_ui": {
"page": "html\/options.html",
"open_in_tab": false
},
"permissions": [
"system.memory"
],
"host_permissions": [
"https:\/\/*.wikimedia.org\/*",
"http:\/\/*.wikimedia.org\/*",
"https:\/\/*.bing.com\/*",
"http:\/\/*.bing.com\/*",
"https:\/\/*.nasa.gov\/*",
"http:\/\/*.nasa.gov\/*"
]
} | |