FPL Upcoming Fixtures
Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
Wat is FPL Upcoming Fixtures?
FPL Upcoming Fixtures is een Chrome-extensie ontwikkeld door Josh Hill, en de belangrijkste functie is "Display the fixtures from upcoming gameweeks while selecting your fantasy football team.".
Extensie Screenshots
Download het CRX-bestand van de extensie FPL Upcoming Fixtures
Download FPL Upcoming Fixtures-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
--- 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. Basisinformatie over de Extensie
| Naam | |
| ID | nkadfamcemopikkffdkhjbmpnhfdabgc |
| Officiële URL | https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc |
| Beschrijving | Display the fixtures from upcoming gameweeks while selecting your fantasy football team. |
| Bestandsgrootte | 2.62 MB |
| Aantal Installaties | 1,135 |
| Huidige Versie | 3.1.1 |
| Laatst Bijgewerkt | 2022-08-18 |
| Publicatiedatum | 2021-01-05 |
| Beoordeling | 4.80/5 Totaal 15 Beoordelingen |
| Ontwikkelaar | Josh Hill |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |