No more projections
Remove projections from popular Fantasy Football platforms!
Was ist No more projections?
No more projections ist eine Chrome-Erweiterung, die von InblEric entwickelt wurde, und ihr Hauptmerkmal ist "Remove projections from popular Fantasy Football platforms!".
Erweiterungsscreenshots
No more projections-Erweiterungs-CRX-Datei herunterladen
Laden Sie No more projections-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | cidgbgcboamddfhgifoijpgkoihdkhbf | 
| Offizielle URL | https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf | 
| Beschreibung | Remove projections from popular Fantasy Football platforms! | 
| Dateigröße | 10.67 KB | 
| Installationsanzahl | 18 | 
| Aktuelle Version | 0.1.0 | 
| Letztes Update | 2019-10-15 | 
| Veröffentlichungsdatum | 2019-10-15 | 
| Bewertung | 4.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | InblEric | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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
}  |  |