FPL Upcoming Fixtures

Display the fixtures from upcoming gameweeks while selecting your fantasy football team.

Was ist FPL Upcoming Fixtures?

FPL Upcoming Fixtures ist eine Chrome-Erweiterung, die von Josh Hill entwickelt wurde, und ihr Hauptmerkmal ist "Display the fixtures from upcoming gameweeks while selecting your fantasy football team.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

FPL Upcoming Fixtures-Erweiterungs-CRX-Datei herunterladen

Laden Sie FPL Upcoming Fixtures-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

                        --- 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.                    

Grundlegende Informationen zur Erweiterung

Name FPL Upcoming Fixtures FPL Upcoming Fixtures
ID nkadfamcemopikkffdkhjbmpnhfdabgc
Offizielle URL https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc
Beschreibung Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
Dateigröße 2.62 MB
Installationsanzahl 1,135
Aktuelle Version 3.1.1
Letztes Update 2022-08-18
Veröffentlichungsdatum 2021-01-05
Bewertung 4.80/5 Insgesamt 15 Bewertungen
Entwickler Josh Hill
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}