Timezone Clocks

Display Multibple Timezone at once

Was ist Timezone Clocks?

Timezone Clocks ist eine Chrome-Erweiterung, die von ryoya.kawai entwickelt wurde, und ihr Hauptmerkmal ist "Display Multibple Timezone at once".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Timezone Clocks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Timezone Clocks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Timezone Clocks Timezone Clocks
ID phckpicnefnbafbamoidbemcdlolfoel
Offizielle URL https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel
Beschreibung Display Multibple Timezone at once
Dateigröße 146 KB
Installationsanzahl 632
Aktuelle Version 1.0.19
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler ryoya.kawai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://blog.ryoyakawai.com
Hilfeseite URL https://github.com/ryoyakawai/timezones-extension/issues
Unterstützte Sprachen 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
}