FanTrax Expanded Player Stats

Expands the stats displayed by FanTrax's player search functions

FanTrax Expanded Player Statsคืออะไร?

FanTrax Expanded Player Stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย colinrsmall และคุณลักษณะหลักของมันคือ "Expands the stats displayed by FanTrax's player search functions"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FanTrax Expanded Player Stats

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

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

                        An open-source Chrome extension using EliteProspect's API to pull and display stats for players outside of the NHL on Fantrax.

Github: https://github.com/colinrsmall/Fantrax-Expanded-Player-Stats

Known Issues:

 - Stats on the "player" page will not update until the user refreshes the page

 - Very occasionally, the extension will not update player stats on the "team" page. This is fixed by refreshing

 - There are several players whose API calls does not pull the right player information

 - Players who have diacritical marks (mostly European players) in their names will most likely not pull the right player from EliteProspects' API. This is due to the API call requiring diacritical marks in names but Fantrax displaying names without diacritical marks

 - Only stats from a player's most recent team will show, meaning players who have been traded mid-season will not have their full season stats displayed

Updates:
0.1.3.1:
 - Add debug logging to console, removed old debug code

0.1.3:
 - Add skipping prospects who have played in the NHL to the player search page

0.1.2.1:
 - Improved skipping prospects who have played in the NHL

0.1.2:
 - Increase delay on URL change timer to fix the scripts from breaking when the page doesn't load fast enough
 - Add a variable to skip players who already have NHL stats (currently this is on by default and needs an options window to be changed)
 - Add hardcode fixes for Eeli Tolvanen, Alexandar Georgiev, and Erik Brannstrom                    

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

ชื่อ FanTrax Expanded Player Stats FanTrax Expanded Player Stats
ID gokdolifabcjjdfcggcgolhgeaigcnmh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/fantrax-expanded-player-s/gokdolifabcjjdfcggcgolhgeaigcnmh
คำอธิบาย Expands the stats displayed by FanTrax's player search functions
ขนาดไฟล์ 22.76 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.1.3.1
อัปเดตครั้งล่าสุด 2018-02-20
วันที่เผยแพร่ 2018-02-20
ผู้พัฒนา colinrsmall
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FanTrax Expanded Player Stats",
    "description": "Expands the stats displayed by FanTrax's player search functions",
    "version": "0.1.3.1",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.fantrax.com\/fantasy\/league\/*\/team\/roster*"
            ],
            "run_at": "document_idle",
            "js": [
                "team_page_scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.fantrax.com\/fantasy\/league\/*\/players*"
            ],
            "run_at": "document_idle",
            "js": [
                "player_page_scripts.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/www.fantrax.com\/*"
    ]
}