LineupSorter

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

Apa itu LineupSorter?

LineupSorter adalah ekstensi Chrome yang dikembangkan oleh brballin, dan fitur utamanya adalah "Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi LineupSorter

Unduh file ekstensi LineupSorter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama LineupSorter LineupSorter
ID ojbnhpfimimmoplbikpcnkbdpjiigmph
URL Resmi https://chrome.google.com/webstore/detail/lineupsorter/ojbnhpfimimmoplbikpcnkbdpjiigmph
Deskripsi Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.
Ukuran File 46.51 KB
Jumlah Instalasi 121
Versi Saat Ini 3.0
Terakhir Diperbarui 2018-03-06
Tanggal Publikasi 2018-03-06
Penilaian 4.75/5 Total 8 Penilaian
Pengembang brballin
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}