TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
Wat is TimeTab?
TimeTab is een Chrome-extensie ontwikkeld door Joshua Britt, en de belangrijkste functie is "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.".
Extensie Screenshots
Download het CRX-bestand van de extensie TimeTab
Download TimeTab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
| Officiële URL | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
| Beschrijving | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
| Bestandsgrootte | 32.11 KB |
| Aantal Installaties | 90 |
| Huidige Versie | 3.2 |
| Laatst Bijgewerkt | 2020-02-25 |
| Publicatiedatum | 2020-02-25 |
| Ontwikkelaar | Joshua Britt |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/MEDIA76/timetab |
| Ondersteunde Talen | 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
} | |