No more projections

Remove projections from popular Fantasy Football platforms!

Wat is No more projections?

No more projections is een Chrome-extensie ontwikkeld door InblEric, en de belangrijkste functie is "Remove projections from popular Fantasy Football platforms!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie No more projections

Download No more projections-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension will remove fantasy football projections from popular fantasy football platforms.

Current sites support:
ESPN: removes projections and win probability from fantasycast and My Team.                    

Basisinformatie over de Extensie

Naam No more projections No more projections
ID cidgbgcboamddfhgifoijpgkoihdkhbf
Officiële URL https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf
Beschrijving Remove projections from popular Fantasy Football platforms!
Bestandsgrootte 10.67 KB
Aantal Installaties 18
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-10-15
Publicatiedatum 2019-10-15
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar InblEric
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No more projections",
    "version": "0.1.0",
    "description": "Remove projections from popular Fantasy Football platforms!",
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*.espn.com\/*",
                "https:\/\/*.espn.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}