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
官方網址 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
}