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」です。
拡張機能のスクリーンショット
Futbin Charts拡張機能のCRXファイルをダウンロード
Futbin Charts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
} | |