TimeTab

A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.

什么是TimeTab?

TimeTab是由Joshua Britt开发的Chrome扩展程序,该扩展的主要功能是“A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.”。

扩展截图

screenshot
screenshot

下载TimeTab扩展crx文件

下载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                    

扩展基本信息

名称 TimeTab TimeTab
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
}