CSFloat Market Checker

Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories

CSFloat Market Checker là gì?

CSFloat Market Checker là một tiện ích mở rộng Chrome được phát triển bởi https://csfloat.com, và tính năng chính của nó là "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        CSFloat Market Checker uses the dedicated CS Float (formerly CSGO Float) API to allow you to retrieve the float values, 3d models, and screenshots of market items directly from the page!

GitHub: https://github.com/csfloat/extension

Note: Items queried will be ranked on FloatDB (csfloat.com)

Features:

* Allows you to retrieve the float, paint seed, and float rank of any market or inventory item
* Allows you to fetch the 3D model and screenshot of the item directly on the page
* Fetches all floats on the page fast and automatically on page load
* User-definable filters to highlight items with low floats or certain paint seeds
* Shows market item stickers at a glance and their wear
* Change the amount of items on the page up to 100

Compatibility:
* This extension has been tested to work with Steam Inventory Helper and Enhanced Steam
* Since this extension doesn't hook and modify HTTP headers to bypass steamcommunity.com CSP, it should have greater compatibility with other extensions.


 Please report issues using our GitHub issue tracker (https://github.com/csfloat/extension/issues).                    

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

Tên CSFloat Market Checker CSFloat Market Checker
ID jjicbefpemnphinccgikpdaagjebbnhg
URL Chính Thức https://chromewebstore.google.com/detail/csfloat-market-checker/jjicbefpemnphinccgikpdaagjebbnhg
Mô tả Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories
Kích Thước Tệp 649 KB
Số Lần Cài Đặt 584,189
Phiên Bản Hiện Tại 3.2.4
Cập Nhật Lần Cuối 2023-12-14
Ngày Phát Hành 2020-06-23
Đánh Giá 4.08/5 Tổng số 310 Đánh Giá
Nhà Phát Triển https://csfloat.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://csfloat.com
URL Trang Trợ Giúp https://csfloat.com/support
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CSFloat Market Checker",
    "short_name": "CSFloat",
    "version": "3.2.4",
    "description": "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/market\/listings\/730\/*"
            ],
            "js": [
                "src\/lib\/page_scripts\/market_listing.js"
            ],
            "css": [
                "src\/global.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/tradehistory*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/tradehistory*"
            ],
            "js": [
                "src\/lib\/page_scripts\/trade_history.js"
            ],
            "css": [
                "src\/global.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/inventory*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/inventory*"
            ],
            "js": [
                "src\/lib\/page_scripts\/inventory.js"
            ],
            "css": [
                "src\/global.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/tradeoffer\/*"
            ],
            "js": [
                "src\/lib\/page_scripts\/trade_offer.js"
            ],
            "css": [
                "src\/global.css"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.steamcommunity.com\/market\/listings\/730\/*",
        "*:\/\/*.steamcommunity.com\/id\/*\/inventory*",
        "*:\/\/*.steamcommunity.com\/id\/*\/tradehistory*",
        "*:\/\/*.steamcommunity.com\/profiles\/*\/inventory*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.steamcommunity.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/model_frame.html",
                "src\/model_frame.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        },
        {
            "resources": [
                "src\/version.txt"
            ],
            "matches": [
                "https:\/\/csfloat.com\/*"
            ]
        }
    ]
}