FPL Upcoming Fixtures
Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
Cos'è FPL Upcoming Fixtures?
FPL Upcoming Fixtures è un'estensione di Chrome sviluppata da Josh Hill, e la sua funzione principale è "Display the fixtures from upcoming gameweeks while selecting your fantasy football team.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FPL Upcoming Fixtures
Scarica i file di estensione FPL Upcoming Fixtures in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
--- Updated for the 2022/23 season ---
When viewing your team selection on the Fantasy Premier League website:
- Use the Gameweek box in the right-hand sidebar to view your team's fixtures in future gameweeks.
- Click the Upcoming Fixtures icon in the Chrome tray to view the next 5 fixtures for all teams.
(v3.1.1 - Fixed a bug where the fixtures would revert back to the first gameweek when making substitutions.)
Disclaimer: Please disable other FPL extensions while running Upcoming Fixtures. Informazioni di Base sull'Estensione
| Nome | |
| ID | nkadfamcemopikkffdkhjbmpnhfdabgc |
| URL Ufficiale | https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc |
| Descrizione | Display the fixtures from upcoming gameweeks while selecting your fantasy football team. |
| Dimensione del File | 2.62 MB |
| Conteggio Installazioni | 1,135 |
| Versione Corrente | 3.1.1 |
| Ultimo Aggiornamento | 2022-08-18 |
| Data di Pubblicazione | 2021-01-05 |
| Valutazione | 4.80/5 Totale 15 Valutazioni |
| Sviluppatore | Josh Hill |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "FPL Upcoming Fixtures",
"version": "3.1.1",
"description": "Display the fixtures from upcoming gameweeks while selecting your fantasy football team. ",
"content_scripts": [
{
"matches": [
"https:\/\/fantasy.premierleague.com\/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
},
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"permissions": [
"storage"
]
} | |