FPL Time Adjuster

Changes time on FPL site to local timezone

What is FPL Time Adjuster?

FPL Time Adjuster is a Chrome extension developed by bryancoxwell, and its main feature is "Changes time on FPL site to local timezone".

Download FPL Time Adjuster Extension CRX File

Download FPL Time Adjuster extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name FPL Time Adjuster FPL Time Adjuster
ID iljloaknhbhffhofoggjpfpnjlfdajjg
Official URL https://chrome.google.com/webstore/detail/iljloaknhbhffhofoggjpfpnjlfdajjg
Description Changes time on FPL site to local timezone
File Size 9.47 KB
Installation Count 52
Current Version 1.1
Last Updated 2017-02-07
Publish Date 2017-02-07
Rating 3.57/5 Total 7 Ratings
Developer bryancoxwell
Payment Type free
Supported Languages 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"
    ]
}