FPL Time Adjuster

Changes time on FPL site to local timezone

什么是FPL Time Adjuster?

FPL Time Adjuster是由bryancoxwell开发的Chrome扩展程序,该扩展的主要功能是“Changes time on FPL site to local timezone”。

下载FPL Time Adjuster扩展crx文件

下载FPL Time Adjuster扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 FPL Time Adjuster FPL Time Adjuster
ID iljloaknhbhffhofoggjpfpnjlfdajjg
官方URL https://chrome.google.com/webstore/detail/iljloaknhbhffhofoggjpfpnjlfdajjg
简介 Changes time on FPL site to local timezone
文件大小 9.47 KB
安装次数 52
当前版本 1.1
更新时间 2017-02-07
上架时间 2017-02-07
评分 3.57/5 共7次评分
开发者 bryancoxwell
付费类型 free
支持的语言 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"
    ]
}