FPL Upcoming Fixtures

Display the fixtures from upcoming gameweeks while selecting your fantasy football team.

什么是FPL Upcoming Fixtures?

FPL Upcoming Fixtures是由Josh Hill开发的Chrome扩展程序,该扩展的主要功能是“Display the fixtures from upcoming gameweeks while selecting your fantasy football team.”。

扩展截图

screenshot
screenshot
screenshot

下载FPL Upcoming Fixtures扩展crx文件

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

扩展使用说明

                        --- Updated for the 2022/23 season ---

When viewing your team selection on the Fantasy Premier League website:

- Use the Gameweek box in the right-hand sidebar to view your team's fixtures in future gameweeks.

- Click the Upcoming Fixtures icon in the Chrome tray to view the next 5 fixtures for all teams.

(v3.1.1 - Fixed a bug where the fixtures would revert back to the first gameweek when making substitutions.)

Disclaimer: Please disable other FPL extensions while running Upcoming Fixtures.                    

扩展基本信息

名称 FPL Upcoming Fixtures FPL Upcoming Fixtures
ID nkadfamcemopikkffdkhjbmpnhfdabgc
官方URL https://chromewebstore.google.com/detail/fpl-upcoming-fixtures/nkadfamcemopikkffdkhjbmpnhfdabgc
简介 Display the fixtures from upcoming gameweeks while selecting your fantasy football team.
文件大小 2.62 MB
安装次数 1,135
当前版本 3.1.1
更新时间 2022-08-18
上架时间 2021-01-05
评分 4.80/5 共15次评分
开发者 Josh Hill
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FPL Upcoming Fixtures",
    "version": "3.1.1",
    "description": "Display the fixtures from upcoming gameweeks while selecting your fantasy football team. ",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.premierleague.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon128.png"
    },
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "permissions": [
        "storage"
    ]
}