Timezone Clocks

Display Multibple Timezone at once

什麼是Timezone Clocks?

Timezone Clocks是由ryoya.kawai開發的Chrome擴展程式,該擴展的主要功能是“Display Multibple Timezone at once”。

擴展截圖

screenshot
screenshot
screenshot

下載Timezone Clocks擴展crx文件

下載Timezone Clocks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allow you to display clocks in different timezones up to 8 at once. Also, the app can change the time graphically, so easy to know the time of in different places. 

Scheduling Teleconference in several timezones for example, sometimes it is complicated to know what time is it at Place B when Place A is this time. Then trying to see in inversed way, what time is it at Place A when Place B is this time? something like that. With this app, you will be fee to this kind of situation.                    

擴展基本資訊

名稱 Timezone Clocks Timezone Clocks
ID phckpicnefnbafbamoidbemcdlolfoel
官方網址 https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel
簡介 Display Multibple Timezone at once
檔案大小 146 KB
安裝次數 632
目前版本 1.0.19
更新時間 2019-03-08
上架時間 2019-03-08
評分 4.50/5 共 2 次評分
開發者 ryoya.kawai
電子郵箱 [email protected]
付費類型 free
擴展官網 https://blog.ryoyakawai.com
說明頁面URL https://github.com/ryoyakawai/timezones-extension/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Timezone Clocks",
    "version": "1.0.19",
    "description": "Display Multibple Timezone at once",
    "permissions": [
        "storage",
        "tabs",
        "idle"
    ],
    "background": {
        "page": "src\/background.html",
        "persistent": true
    },
    "web_accessible_resources": [
        "src\/scripts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*\/background.html",
                "file:\/\/\/*\/options.html",
                "file:\/\/\/*\/popup.html"
            ],
            "js": [
                "src\/scripts\/inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/timezoneclock16.png",
            "32": "src\/images\/timezoneclock32.png",
            "48": "src\/images\/timezoneclock48.png",
            "128": "src\/images\/timezoneclock128.png"
        }
    },
    "icons": {
        "16": "src\/images\/timezoneclock16.png",
        "32": "src\/images\/timezoneclock32.png",
        "48": "src\/images\/timezoneclock48.png",
        "128": "src\/images\/timezoneclock128.png"
    },
    "options_page": "src\/options.html",
    "manifest_version": 2
}