No more projections
Remove projections from popular Fantasy Football platforms!
Hvad er No more projections?
No more projections er en Chrome-udvidelse udviklet af InblEric, og dens hovedfunktion er "Remove projections from popular Fantasy Football platforms!".
Udvidelsesskærmbilleder
Download No more projections-udvidelses-CRX-fil
Download No more projections-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cidgbgcboamddfhgifoijpgkoihdkhbf |
| Officiel URL | https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf |
| Beskrivelse | Remove projections from popular Fantasy Football platforms! |
| Filstørrelse | 10.67 KB |
| Antal Installationer | 18 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2019-10-15 |
| Udgivelsesdato | 2019-10-15 |
| Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
| Udvikler | InblEric |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |