Timezone Clocks

Display Multibple Timezone at once

Qu'est-ce que Timezone Clocks ?

Timezone Clocks est une extension Chrome développée par ryoya.kawai, et sa fonction principale est "Display Multibple Timezone at once".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Timezone Clocks

Téléchargez les fichiers d'extension Timezone Clocks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Timezone Clocks Timezone Clocks
ID phckpicnefnbafbamoidbemcdlolfoel
URL Officiel https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel
Description Display Multibple Timezone at once
Taille du Fichier 146 KB
Nombre d'Installations 632
Version Actuelle 1.0.19
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 4.50/5 Total 2 Évaluations
Développeur ryoya.kawai
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://blog.ryoyakawai.com
URL de la Page d'Aide https://github.com/ryoyakawai/timezones-extension/issues
Langues Prises en Charge 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
}