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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}