Yahoo Timezone Corrector

Fix the timezone for Yahoo fantasy baseball

什麼是Yahoo Timezone Corrector?

Yahoo Timezone Corrector是由kbreece.labs開發的Chrome擴展程式,該擴展的主要功能是“Fix the timezone for Yahoo fantasy baseball”。

擴展截圖

screenshot
screenshot

下載Yahoo Timezone Corrector擴展crx文件

下載Yahoo Timezone Corrector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}