Fantasy Football Hybrid Standings

Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page.

Fantasy Football Hybrid Standingsคืออะไร?

Fantasy Football Hybrid Standings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sbru และคุณลักษณะหลักของมันคือ "Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fantasy Football Hybrid Standings

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

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

                        ~~~AFTER ESPN'S UPDATE THIS EXTENSION DOES NOT WORK. I DON'T CURRENTLY PLAN TO UPDATE IT :'( ~~~

================
-- Donations --

BTC: 17Rr3TcvafC4yfBJ4mvqMDq8C1RQGeEfFD
ETH: 0xf6b1d2ed5282fa95a6e7e52b56f14b522a8d44c7
LTC: Lej1QW7xvBbomeKQdGAW2ATDG8PwpEtDz7

-- What is this? --

This extension provides users with the ability to see the standings of their league on ESPN if their league uses a hybrid scoring system. No more do league managers have to keep track of this by hand or on the side, it's all taken care for you and now everyone in the league can see the hybrid standings straight from the ESPN Standings page!

Hybrid scoring is a combination of H2H and points based scoring that eliminates the luck of scheduling from the game. Every week you have the ability to get 2 wins. 1 win you get by winning your matchup. The second "win" you get if you finish the week in the top half of scores. For example if you put up 110 and your opponent puts up 120, but your score of 110 would have beat anyone else that week you would go 1-1 that week while your opponent would go 2-0.

-- Future Ideas --
- Make columns sortable
- Show projected playoff bracket
- Yahoo compatible
- Update info that relies on scoring such as win streak
- Let me know what you'd like to see!

-- Known Issues --
- If there is a more than 2-way tie for the 6th highest points it still gives all the people who tied .5 wins
- Please let me know if you find a bug.                    

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

ชื่อ Fantasy Football Hybrid Standings Fantasy Football Hybrid Standings
ID defieefkkhbdajheandkjdenpjolcpgd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fantasy-football-hybrid-s/defieefkkhbdajheandkjdenpjolcpgd
คำอธิบาย Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page.
ขนาดไฟล์ 69.54 KB
จำนวนการติดตั้ง 243
เวอร์ชันปัจจุบัน 0.12.0
อัปเดตครั้งล่าสุด 2019-07-17
วันที่เผยแพร่ 2019-07-17
คะแนน 4.71/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา sbru
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fantasy Football Hybrid Standings",
    "version": "0.12.0",
    "description": "Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page.",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/games.espn.com\/ffl\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "incognito": "not_allowed",
    "short_name": "FF Hybrid Standings"
}