Futbin Charts

Display price charts directly in Futbin players list view

Futbin Charts là gì?

Futbin Charts là một tiện ích mở rộng Chrome được phát triển bởi krabboss117, và tính năng chính của nó là "Display price charts directly in Futbin players list view".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

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

Tải xuống các tệp mở rộng Futbin Charts 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

                        Futbin Charts adds a button to each player in the list view, to access directly to the prices charts for this player. This is a great improvement for your Futbin workflow, especially during trading sessions, because you do not need to open each player page anymore. A lot of time saved, a lot of coins earned !

This is an unofficial Futbin Chrome Extension using Futbin.com data. All credits for data used by the extension go to Fubin.com.

Release 0.6.0 (latest):
- Add FIFA 23 support

Release 0.5.0:
- Add FIFA 22 support

Release 0.4.0:
- Add sales history chart
- Add filters to daily chart
- Rework hourly chart filters design

Release 0.3.0:
- Add chart button to PGP view

Release 0.2.0:
- Add 18n (French / English)
- Add FIFA 21 support                    

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

Tên Futbin Charts Futbin Charts
ID kcldcojnapnigmihaddgkcabdklfiobi
URL Chính Thức https://chromewebstore.google.com/detail/futbin-charts/kcldcojnapnigmihaddgkcabdklfiobi
Mô tả Display price charts directly in Futbin players list view
Kích Thước Tệp 408 KB
Số Lần Cài Đặt 466
Phiên Bản Hiện Tại 0.6.1
Cập Nhật Lần Cuối 2022-10-13
Ngày Phát Hành 2020-07-31
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển krabboss117
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.buymeacoffee.com/k117
Ngôn Ngữ Được Hỗ Trợ fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Futbin Charts",
    "description": "Display price charts directly in Futbin players list view",
    "version": "0.6.1",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/www.futbin.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.futbin.com\/players*",
                "https:\/\/www.futbin.com\/*\/players*"
            ],
            "js": [
                "content\/players.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.futbin.com\/*\/pgp*"
            ],
            "js": [
                "content\/pgp.js"
            ],
            "run_at": "document_end"
        }
    ]
}