FPL Upcoming Fixtures

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

Qu'est-ce que FPL Upcoming Fixtures ?

FPL Upcoming Fixtures est une extension Chrome développée par Josh Hill, et sa fonction principale est "Display the fixtures from upcoming gameweeks while selecting your fantasy football team.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension FPL Upcoming Fixtures

Téléchargez les fichiers d'extension FPL Upcoming Fixtures au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom FPL Upcoming Fixtures FPL Upcoming Fixtures
ID nkadfamcemopikkffdkhjbmpnhfdabgc
URL Officiel https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc
Description Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
Taille du Fichier 2.62 MB
Nombre d'Installations 1,135
Version Actuelle 3.1.1
Dernière Mise à Jour 2022-08-18
Date de Publication 2021-01-05
Évaluation 4.80/5 Total 15 Évaluations
Développeur Josh Hill
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}