TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
Qu'est-ce que TimeTab ?
TimeTab est une extension Chrome développée par Joshua Britt, et sa fonction principale est "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TimeTab
Téléchargez les fichiers d'extension TimeTab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
URL Officiel | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
Description | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
Taille du Fichier | 32.11 KB |
Nombre d'Installations | 90 |
Version Actuelle | 3.2 |
Dernière Mise à Jour | 2020-02-25 |
Date de Publication | 2020-02-25 |
Développeur | Joshua Britt |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/MEDIA76/timetab |
Langues Prises en Charge | 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 } |