FPL 360

Complete FPL chrome extension

Τι είναι το FPL 360;

Το FPL 360 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Supreme Paudel, και η κύρια λειτουργία του είναι "Complete FPL chrome extension".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        FPL 360 : The Complete Fantasy Premier League(FPL) Chrome Extension

Whats new in v1.2.x?
The extension now also supports draft.premierleague.com.
--------------------------------------------------------------------------------------------------------------------------------------
Extension features breakdown

1. Away jerseys on Away fixtures

The extension shows away jerseys on away fixtures. Not just limited to the "My-team" page as it shows the away jersey on the "points" page and also the "transfers" page of the fantasy premier league website. Helps add a more realistic feel. Moreover, for example, if a user navigated to see any team's points during GW13, the away fixtures during GW13 are used to show away jerseys for appropriate teams.

2. Next few fixtures (FDR)
Shows the upcoming fixtures for all the players in the "My-team" and "transfers" page. 

3. Previous Gameweek Points
Shows the previous gameweek points for all the players in the user's team in the "My-team" and "transfers" page. The points are in colored boxes based on the number of points they scored. Hover over the points to see more info (Gameweek, Fixture, Goals, Assists)

4. Net transfers in the form of red/green arrows
In the "transfers" page, red/green arrows are used to show the net-transfers for the player during the current gameweek. Green arrow indicates more transfers in while red arrow indicates more transfers out. More arrows indicate more buying/selling activity. Hover over the arrows to see the exact net-transfers number. 

5. Profit/loss made on players in the user's team
In the "transfers" page, the extension shows the profit/loss made on the players in the user's team. Profit/loss is just the current selling price of the player minus the purchase price for the player. A profit is indicated by green '△' while a loss is indicated by a red '▽' followed by the profit/loss amount. 

6. Expected points
Expected points for the next gameweek. It uses information provided provided by the fantasy API for this which takes into account blank, double gameweeks etc.

User can turn on/off the features they want/don't want from the extension popup. Just click on the extension and save your desired features. Happy Fantasy!                    

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

Όνομα FPL 360 FPL 360
ID idpeligglnfandhcncpllkdolhjinaja
Επίσημο URL https://chromewebstore.google.com/detail/fpl-360/idpeligglnfandhcncpllkdolhjinaja
Περιγραφή Complete FPL chrome extension
Μέγεθος Αρχείου 92.91 KB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 1.2.4
Τελευταία Ενημέρωση 2024-02-20
Ημερομηνία Δημοσίευσης 2024-02-11
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Supreme Paudel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/paudsu01/FPL-360
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/paudsu01/FPL-360/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FPL 360",
    "version": "1.2.4",
    "description": "Complete FPL chrome extension",
    "icons": {
        "16": "img\/icons\/16x16.png",
        "32": "img\/icons\/32x32.png",
        "48": "img\/icons\/48x48.png",
        "128": "img\/icons\/128x128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/helper-content-script.js",
                "scripts\/fantasy-content-script.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "https:\/\/fantasy.premierleague.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/helper-content-script.js",
                "scripts\/draft-content-script.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "https:\/\/draft.premierleague.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}