Futbin Charts

Display price charts directly in Futbin players list view

Futbin Charts란 무엇입니까?

Futbin Charts은(는) krabboss117에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display price charts directly in Futbin players list view"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Futbin Charts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Futbin Charts Futbin Charts
ID kcldcojnapnigmihaddgkcabdklfiobi
공식 URL https://chromewebstore.google.com/detail/futbin-charts/kcldcojnapnigmihaddgkcabdklfiobi
설명 Display price charts directly in Futbin players list view
파일 크기 408 KB
설치 횟수 466
현재 버전 0.6.1
최근 업데이트 2022-10-13
출시 날짜 2020-07-31
평점 5.00/5 총 3 개의 평점
개발자 krabboss117
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.buymeacoffee.com/k117
지원되는 언어 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"
        }
    ]
}