TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
Что такое TimeTab?
TimeTab - это расширение Chrome, разработанное Joshua Britt, и его основная функция - "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Снимки экрана расширения
Скачать файл CRX расширения TimeTab
Скачайте файлы расширений TimeTab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
Официальный URL | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
Описание | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
Размер файла | 32.11 KB |
Количество установок | 90 |
Текущая Версия | 3.2 |
Последнее Обновление | 2020-02-25 |
Дата публикации | 2020-02-25 |
Разработчик | Joshua Britt |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/MEDIA76/timetab |
Поддерживаемые языки | 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 } |