TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
¿Qué es TimeTab?
TimeTab es una extensión de Chrome desarrollada por Joshua Britt, y su función principal es "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TimeTab
Descarga archivos de extensión TimeTab 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
Please note, this is an ongoing side project and that I plan to add even more features when I can get to them. Feedback, recommendations, and reporting bugs via reviews/support is always welcome & appreciated. Otherwise, enjoy! - Display multiple clocks - Minimal and clean design - Show or hide custom labels - Light and dark mode support - Choose 12 or 24 hour format - Instant and runs offline - No additional site access
Información Básica de la Extensión
Nombre | |
ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
URL Oficial | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
Descripción | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
Tamaño del Archivo | 32.11 KB |
Cantidad de Instalaciones | 90 |
Versión Actual | 3.2 |
Última Actualización | 2020-02-25 |
Fecha de Publicación | 2020-02-25 |
Desarrollador | Joshua Britt |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/MEDIA76/timetab |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TimeTab", "version": "3.2", "description": "A simple Chrome extension that displays the time, and\/or the time of multiple zones, whenever a new tab is opened.", "author": "Joshua Britt", "homepage_url": "https:\/\/github.com\/MEDIA76\/timetab", "permissions": [ "storage" ], "icons": { "16": "icons\/light\/16.png", "48": "icons\/light\/48.png", "128": "icons\/light\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "38": "icons\/light\/38.png" }, "default_title": "New Tab" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "offline_enabled": true, "manifest_version": 2 } |