Fantasy Basketball Helper

This extension helps the user to start active players for next 7 days

Fantasy Basketball Helper क्या है?

Fantasy Basketball Helper Yi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps the user to start active players for next 7 days"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fantasy Basketball Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension adds another button next to Start Active Players so that you can edit your lineup easily for next 7 days.
It only supports Yahoo Fantasy Basketball now.
You can also find a python desktop version here:
https://github.com/qpskcn1/Yahoo-Fantasy-Basketball-Helper

Release Notes:
Version 1.2 11/03/2017
Use chrome local storage api to store all data and display the info in popup.html

Version 1.1 10/20/2017
Add validation part to make sure every active players are started. Alert names of active players who cannot be started.
 
Version 1.0 10/18/2017
First release.                    

एक्सटेंशन की मूल जानकारी

नाम Fantasy Basketball Helper Fantasy Basketball Helper
ID agnifafbknpcmagdhongfcmbgdlckknn
आधिकारिक URL https://chromewebstore.google.com/detail/fantasy-basketball-helper/agnifafbknpcmagdhongfcmbgdlckknn
विवरण This extension helps the user to start active players for next 7 days
फ़ाइल का आकार 215 KB
स्थापना संख्या 17
वर्तमान संस्करण 1.2
अंतिम अपडेट 2017-11-03
प्रकाशन तिथि 2017-11-03
डेवलपर Yi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fantasy Basketball Helper",
    "description": "This extension helps the user to start active players for next 7 days",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icons\/19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/basketball.fantasysports.yahoo.com\/nba\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/basketball.fantasysports.yahoo.com\/nba\/*\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/startActivePlayers.js"
            ]
        }
    ]
}