Yahoo Timezone Corrector

Fix the timezone for Yahoo fantasy baseball

¿Qué es Yahoo Timezone Corrector?

Yahoo Timezone Corrector es una extensión de Chrome desarrollada por kbreece.labs, y su función principal es "Fix the timezone for Yahoo fantasy baseball".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Yahoo Timezone Corrector

Descarga archivos de extensión Yahoo Timezone Corrector 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

                        Yahoo Fantasy baseball is great, but it's a pain having to do math in your head to determine what time the games are for those of us not in the Pacific timezone. This can be problematic when it comes to making sure you set your lineup and check back at the right times to swap out any scratched players. As a solution to this problem, this simple Chrome extension allows you to set the timezone you're in and the game times will update to your time zone shortly after the page loads.

Good luck this season!                    

Información Básica de la Extensión

Nombre Yahoo Timezone Corrector Yahoo Timezone Corrector
ID kpgbkhkleemfkaopabnadlbcjfgbhggp
URL Oficial https://chromewebstore.google.com/detail/yahoo-timezone-corrector/kpgbkhkleemfkaopabnadlbcjfgbhggp
Descripción Fix the timezone for Yahoo fantasy baseball
Tamaño del Archivo 283 KB
Cantidad de Instalaciones 28
Versión Actual 1.3
Última Actualización 2017-05-18
Fecha de Publicación 2017-05-17
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador kbreece.labs
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yahoo Timezone Corrector",
    "description": "Fix the timezone for Yahoo fantasy baseball",
    "version": "1.3",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.yahoo.com\/*",
                "https:\/\/*.yahoo.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*.yahoo.com\/*",
        "https:\/\/*.yahoo.com\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "minimum_chrome_version": "9",
    "manifest_version": 2
}