FPL Upcoming Fixtures

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

Τι είναι το FPL Upcoming Fixtures;

Το FPL Upcoming Fixtures είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Josh Hill, και η κύρια λειτουργία του είναι "Display the fixtures from upcoming gameweeks while selecting your fantasy football team.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης FPL Upcoming Fixtures

Λήψη αρχείων επέκτασης FPL Upcoming Fixtures σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα FPL Upcoming Fixtures FPL Upcoming Fixtures
ID nkadfamcemopikkffdkhjbmpnhfdabgc
Επίσημο URL https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc
Περιγραφή Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
Μέγεθος Αρχείου 2.62 MB
Αριθμός Εγκαταστάσεων 1,135
Τρέχουσα Έκδοση 3.1.1
Τελευταία Ενημέρωση 2022-08-18
Ημερομηνία Δημοσίευσης 2021-01-05
Αξιολόγηση 4.80/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Josh Hill
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}