TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
O que é TimeTab?
TimeTab é uma extensão do Chrome desenvolvida por Joshua Britt, e sua principal característica é "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TimeTab
Baixe arquivos de extensão TimeTab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
URL Oficial | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
Descrição | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
Tamanho do Arquivo | 32.11 KB |
Contagem de Instalações | 90 |
Versão Atual | 3.2 |
Última Atualização | 2020-02-25 |
Data de Publicação | 2020-02-25 |
Desenvolvedor | Joshua Britt |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/MEDIA76/timetab |
Idiomas Suportados | 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 } |