PointyBall

Adds projections and other goodies to ESPN Fantasy Football.

Vad är PointyBall?

PointyBall är en Chrome-tillägg utvecklad av Evan Sangaline, och dess huvudfunktion är "Adds projections and other goodies to ESPN Fantasy Football.".

Tilläggsskärmbilder

screenshot

Ladda ner PointyBall-förlängningens CRX-fil

Ladda ner PointyBall-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Adds a tab to ESPN Fantasy Football that gives you a detailed overview of projections for both the next week and the rest of season for all of the teams in your league. Makes it super easy to find good trades!

This is our beta launch so if you run into any problems, or have any suggestions, then please email [email protected] and we'll get back to you as soon as we can.                    

Grundläggande Information om Tillägg

Namn PointyBall PointyBall
ID abddalnolclclkcdpmochnccnllccpoa
Officiell webbadress https://chromewebstore.google.com/detail/pointyball/abddalnolclclkcdpmochnccnllccpoa
Beskrivning Adds projections and other goodies to ESPN Fantasy Football.
Filstorlek 138 KB
Antal Installationer 159
Aktuell Version 1.0.8
Senast Uppdaterad 2016-11-19
Publiceringsdatum 2016-11-18
Betyg 4.60/5 Totalt 5 Betyg
Utvecklare Evan Sangaline
Betalningssätt free
Tilläggswebbplats http://pointyball.com
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PointyBall",
    "description": "Adds projections and other goodies to ESPN Fantasy Football.",
    "homepage_url": "https:\/\/pointyball.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/games.espn.com\/*"
            ],
            "js": [
                "content\/index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background\/index.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "background",
        "*:\/\/api.pointyball.com\/*",
        "*:\/\/games.espn.com\/*",
        "https:\/\/www.google-analytics.com\/*"
    ],
    "icons": {
        "128": "$assets\/icon128.png"
    },
    "version": "1.0.8"
}