FPL Time Adjuster

Changes time on FPL site to local timezone

FPL Time Adjuster là gì?

FPL Time Adjuster là một tiện ích mở rộng Chrome được phát triển bởi bryancoxwell, và tính năng chính của nó là "Changes time on FPL site to local timezone".

Tải xuống tệp CRX của tiện ích mở rộng FPL Time Adjuster

Tải xuống các tệp mở rộng FPL Time Adjuster dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FPL Time Adjuster FPL Time Adjuster
ID iljloaknhbhffhofoggjpfpnjlfdajjg
URL Chính Thức https://chrome.google.com/webstore/detail/iljloaknhbhffhofoggjpfpnjlfdajjg
Mô tả Changes time on FPL site to local timezone
Kích Thước Tệp 9.47 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-02-07
Ngày Phát Hành 2017-02-07
Đánh Giá 3.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển bryancoxwell
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}