TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
Was ist TimeTab?
TimeTab ist eine Chrome-Erweiterung, die von Joshua Britt entwickelt wurde, und ihr Hauptmerkmal ist "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Erweiterungsscreenshots
TimeTab-Erweiterungs-CRX-Datei herunterladen
Laden Sie TimeTab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
| Offizielle URL | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
| Beschreibung | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
| Dateigröße | 32.11 KB |
| Installationsanzahl | 90 |
| Aktuelle Version | 3.2 |
| Letztes Update | 2020-02-25 |
| Veröffentlichungsdatum | 2020-02-25 |
| Entwickler | Joshua Britt |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/MEDIA76/timetab |
| Unterstützte Sprachen | 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
} | |