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 |
官方網址 | 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 |
電子郵箱 | [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 } } |