Yahoo Timezone Corrector

Fix the timezone for Yahoo fantasy baseball

Yahoo Timezone Corrector क्या है?

Yahoo Timezone Corrector kbreece.labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fix the timezone for Yahoo fantasy baseball"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Yahoo Timezone Corrector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Yahoo Timezone Corrector Yahoo Timezone Corrector
ID kpgbkhkleemfkaopabnadlbcjfgbhggp
आधिकारिक URL https://chromewebstore.google.com/detail/yahoo-timezone-corrector/kpgbkhkleemfkaopabnadlbcjfgbhggp
विवरण Fix the timezone for Yahoo fantasy baseball
फ़ाइल का आकार 283 KB
स्थापना संख्या 28
वर्तमान संस्करण 1.3
अंतिम अपडेट 2017-05-18
प्रकाशन तिथि 2017-05-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर kbreece.labs
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}