LineupSorter

Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.

LineupSorter란 무엇입니까?

LineupSorter은(는) brballin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week."입니다.

확장 프로그램 스크린샷

screenshot

LineupSorter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        NEW: Version 3 provides the same solution with just 1 tab refresh! No more loading up to 7 tabs in your browser! Simply select the number of days to sort and click "Sort". Once the tab has refreshed, your lineup has been sorted for those many following days in the background! Be cautious about days when the number of active players is higher than the number of active roster spots by manually prioritizing spots for your best players.

Sorting our fantasy basketball lineup can be a chore. We have to make sure that each day has active players in their corresponding active roster spot and not in the bench so that their stats count towards your weekly totals. Forgetting to do this is one of the biggest reasons fantasy players end up at the bottom of the standings. The problem gets even worse when you are in multiple fantasy leagues. 

LineupSorter utilizes a simple trick to help you sort your roster for the entire week within seconds.

Note: Making changes to your roster requires re-sorting it again for the future days. Therefore, refrain from using this tool to sort for days way ahead of the current day as it will reset all the sorting as soon as you perform trades or add/drop players. 

This tool exclusively works for Yahoo Fantasy Basketball and won't work for other fantasy league websites.

Yahoo is in no way directly affiliated with the creation of this extension.                    

확장 프로그램 기본 정보

이름 LineupSorter LineupSorter
ID ojbnhpfimimmoplbikpcnkbdpjiigmph
공식 URL https://chrome.google.com/webstore/detail/lineupsorter/ojbnhpfimimmoplbikpcnkbdpjiigmph
설명 Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.
파일 크기 46.51 KB
설치 횟수 121
현재 버전 3.0
최근 업데이트 2018-03-06
출시 날짜 2018-03-06
평점 4.75/5 총 8 개의 평점
개발자 brballin
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LineupSorter",
    "short_name": "lnupsorter",
    "description": "Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.",
    "version": "3.0",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/basketball.fantasysports.yahoo.com\/nba\/*"
            ],
            "css": [
                "fantasy.css"
            ],
            "js": [
                "js\/fantasy.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ]
}