FPL Time Adjuster

Changes time on FPL site to local timezone

Co to jest FPL Time Adjuster?

FPL Time Adjuster to rozszerzenie Chrome opracowane przez bryancoxwell, a jego główną funkcją jest „Changes time on FPL site to local timezone”.

Pobierz plik CRX rozszerzenia FPL Time Adjuster

Pobierz pliki rozszerzeń FPL Time Adjuster w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa FPL Time Adjuster FPL Time Adjuster
ID iljloaknhbhffhofoggjpfpnjlfdajjg
Oficjalny URL https://chrome.google.com/webstore/detail/iljloaknhbhffhofoggjpfpnjlfdajjg
Opis Changes time on FPL site to local timezone
Rozmiar pliku 9.47 KB
Liczba instalacji 52
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2017-02-07
Data Publikacji 2017-02-07
Ocena 3.57/5 Łącznie 7 Oceny
Deweloper bryancoxwell
Typ Płatności free
Obsługiwane Języki 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"
    ]
}