Timezone Clocks

Display Multibple Timezone at once

¿Qué es Timezone Clocks?

Timezone Clocks es una extensión de Chrome desarrollada por ryoya.kawai, y su función principal es "Display Multibple Timezone at once".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Timezone Clocks

Descarga archivos de extensión Timezone Clocks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Timezone Clocks Timezone Clocks
ID phckpicnefnbafbamoidbemcdlolfoel
URL Oficial https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel
Descripción Display Multibple Timezone at once
Tamaño del Archivo 146 KB
Cantidad de Instalaciones 632
Versión Actual 1.0.19
Última Actualización 2019-03-08
Fecha de Publicación 2019-03-08
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador ryoya.kawai
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://blog.ryoyakawai.com
URL de la Página de Ayuda https://github.com/ryoyakawai/timezones-extension/issues
Idiomas Soportados 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
}