CSFloat price to Buff price
Check price of any CSFloat offers on Buff163.
CSFloat price to Buff priceとは何ですか?
CSFloat price to Buff priceはthebycopによって開発されたChromeの拡張機能で、その主な機能は「Check price of any CSFloat offers on Buff163.」です。
拡張機能のスクリーンショット
CSFloat price to Buff price拡張機能のCRXファイルをダウンロード
CSFloat price to Buff price拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will allow you to compare the price of any CSFloat offer with the Buff163 price. This extension is open-source and available on github for selfhosting: https://github.com/bycop/csfloat-buff-checker Don't hesitate to contribute to the project, leave a star or follow on github
拡張機能の基本情報
名前 | CSFloat price to Buff price |
ID | lfgejbipklggolmlfkmopkbjjakiljpg |
公式URL | https://chromewebstore.google.com/detail/csfloat-price-to-buff-pri/lfgejbipklggolmlfkmopkbjjakiljpg |
説明 | Check price of any CSFloat offers on Buff163. |
ファイルサイズ | 510 KB |
インストール数 | 828 |
現在のバージョン | 1.5 |
最終更新日 | 2023-09-30 |
公開日 | 2023-08-10 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | thebycop |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/bycop |
ヘルプページのURL | https://github.com/bycop/csfloat-buff-checker |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CSFloat price to Buff price", "version": "1.5", "description": "Check price of any CSFloat offers on Buff163.", "icons": { "16": "icons\/logo_16.png", "32": "icons\/logo_32.png", "48": "icons\/logo_48.png", "128": "icons\/logo_128.png" }, "action": { "default_title": "Like this project ? Click me" }, "host_permissions": [ "https:\/\/csfloat.com\/*", "https:\/\/api.steaminventoryhelper.com\/*", "https:\/\/github.com\/bycop" ], "content_scripts": [ { "matches": [ "https:\/\/csfloat.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "externally_connectable": { "matches": [ "https:\/\/api.steaminventoryhelper.com\/*", "https:\/\/github.com\/bycop" ] }, "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |