FPL Time Adjuster

Changes time on FPL site to local timezone

Cos'è FPL Time Adjuster?

FPL Time Adjuster è un'estensione di Chrome sviluppata da bryancoxwell, e la sua funzione principale è "Changes time on FPL site to local timezone".

Scarica il file CRX dell'estensione FPL Time Adjuster

Scarica i file di estensione FPL Time Adjuster in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Changes times on the Official Fantasy Premier League website to the local timezone.                    

Informazioni di Base sull'Estensione

Nome FPL Time Adjuster FPL Time Adjuster
ID iljloaknhbhffhofoggjpfpnjlfdajjg
URL Ufficiale https://chrome.google.com/webstore/detail/iljloaknhbhffhofoggjpfpnjlfdajjg
Descrizione Changes time on FPL site to local timezone
Dimensione del File 9.47 KB
Conteggio Installazioni 52
Versione Corrente 1.1
Ultimo Aggiornamento 2017-02-07
Data di Pubblicazione 2017-02-07
Valutazione 3.57/5 Totale 7 Valutazioni
Sviluppatore bryancoxwell
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FPL Time Adjuster",
    "description": "Changes time on FPL site to local timezone",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.premierleague.com\/*"
            ],
            "js": [
                "fpltime.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}