Timezone Clocks

Display Multibple Timezone at once

Co to jest Timezone Clocks?

Timezone Clocks to rozszerzenie Chrome opracowane przez ryoya.kawai, a jego główną funkcją jest „Display Multibple Timezone at once”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Timezone Clocks

Pobierz pliki rozszerzeń Timezone Clocks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Timezone Clocks Timezone Clocks
ID phckpicnefnbafbamoidbemcdlolfoel
Oficjalny URL https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel
Opis Display Multibple Timezone at once
Rozmiar pliku 146 KB
Liczba instalacji 632
Aktualna Wersja 1.0.19
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper ryoya.kawai
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://blog.ryoyakawai.com
Adres URL Strony Pomocy https://github.com/ryoyakawai/timezones-extension/issues
Obsługiwane Języki 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
}