FantasyLink

Adds links to several fantasy baseball resources directly into you fantasy baseball website.

FantasyLinkคืออะไร?

FantasyLink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sglantz.github.io/FantasyLink และคุณลักษณะหลักของมันคือ "Adds links to several fantasy baseball resources directly into you fantasy baseball website."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FantasyLink

ดาวน์โหลดไฟล์ส่วนขยาย FantasyLink ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        FantasyLink: Helping you over-analyze you fantasy baseball team since 2012.

What is FantasyLink?
------

FantasyLink is a Chrome browser extension that integrates FanGraphs, Baseball Reference, Razzball, Baseball Prospectus, Baseball Savant, & Baseball Theater directly into your fantasy baseball league website.

Do I need it?
------

Do you play fantasy baseball? Is your league site run on CBSSports.com, ESPN.com, or Yahoo.com? Do you often find yourself unimpressed with the stats that those sites provide you? Do you think xFIP has more predictive value then ERA? If you answered yes to these questions, you probably spend a little to much time switching back and forth between your league website and more in depth baseball sites. This extension is designed to cut down on that wasted time.

How does it work?
------

FantasyLink scans through your league's team clubhouse, free agency, and trade pages looking in specific places for player names. Whenever a player is found, the extension inserts a link to that player's profile on more in depth statistical websites (you can adjust the sites in the extension's setting).  Now looking up Mike Napoli's BABIP is as easy as clicking the little FanGraphs logo next to his name

I'm sold, now how do I get it?
------

FantasyLink is available for download right here in the Chrome Store.  If you know javascript and want to tinker with the extension's code, you can fork the project on Github at https://github.com/sglantz/FantasyLink.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FantasyLink FantasyLink
ID pghfoglbgdeknkjcmilhkidfdkgenfdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fantasylink/pghfoglbgdeknkjcmilhkidfdkgenfdi
คำอธิบาย Adds links to several fantasy baseball resources directly into you fantasy baseball website.
ขนาดไฟล์ 59.97 KB
จำนวนการติดตั้ง 1,664
เวอร์ชันปัจจุบัน 2.4.2
อัปเดตครั้งล่าสุด 2023-04-04
วันที่เผยแพร่ 2019-06-02
คะแนน 4.70/5 รวมทั้งหมด 64 คะแนน
ผู้พัฒนา https://sglantz.github.io/FantasyLink
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://sglantz.github.io/FantasyLink
URL หน้าช่วยเหลือ https://github.com/sglantz/FantasyLink/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FantasyLink",
    "short_name": "FantasyLink",
    "version": "2.4.2",
    "description": "Adds links to several fantasy baseball resources directly into you fantasy baseball website.",
    "permissions": [
        "storage",
        "*:\/\/fantasy.espn.com\/baseball\/*",
        "*:\/\/*.baseball.cbssports.com\/*",
        "*:\/\/baseball.fantasysports.yahoo.com\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "46": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fantasy.espn.com\/baseball\/team*",
                "*:\/\/fantasy.espn.com\/baseball\/players*",
                "*:\/\/fantasy.espn.com\/baseball\/watchlist*",
                "*:\/\/*.baseball.cbssports.com\/teams*",
                "*:\/\/*.baseball.cbssports.com\/stats\/stats-main*",
                "*:\/\/*.baseball.cbssports.com\/transactions\/trade*",
                "*:\/\/baseball.fantasysports.yahoo.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/library.js",
                "js\/contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/library.js",
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "FantasyLink"
    },
    "options_page": "html\/options.html"
}