Yahoo Timezone Corrector

Fix the timezone for Yahoo fantasy baseball

Qu'est-ce que Yahoo Timezone Corrector ?

Yahoo Timezone Corrector est une extension Chrome développée par kbreece.labs, et sa fonction principale est "Fix the timezone for Yahoo fantasy baseball".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Yahoo Timezone Corrector

Téléchargez les fichiers d'extension Yahoo Timezone Corrector 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

                        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!                    

Informations de Base sur l'Extension

Nom Yahoo Timezone Corrector Yahoo Timezone Corrector
ID kpgbkhkleemfkaopabnadlbcjfgbhggp
URL Officiel https://chromewebstore.google.com/detail/yahoo-timezone-corrector/kpgbkhkleemfkaopabnadlbcjfgbhggp
Description Fix the timezone for Yahoo fantasy baseball
Taille du Fichier 283 KB
Nombre d'Installations 28
Version Actuelle 1.3
Dernière Mise à Jour 2017-05-18
Date de Publication 2017-05-17
Évaluation 5.00/5 Total 1 Évaluations
Développeur kbreece.labs
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}