CS Accounts Extension

csaccounts.com extension to view CS accounts in steam profile page

CS Accounts Extension là gì?

CS Accounts Extension là một tiện ích mở rộng Chrome được phát triển bởi saddiqs1, và tính năng chính của nó là "csaccounts.com extension to view CS accounts in steam profile page".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CS Accounts Extension

Tải xuống các tệp mở rộng CS Accounts Extension 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

                        When viewing a steam profile page, you will be able to see their faceit and esea account embedded on the page.

*NOTE*: ESEA profiles will not work 100% of the time.                    

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

Tên CS Accounts Extension CS Accounts Extension
ID hmkcdlbelaggmkddoebdbenhchpmfcbb
URL Chính Thức https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb
Mô tả csaccounts.com extension to view CS accounts in steam profile page
Kích Thước Tệp 23.98 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-05-15
Ngày Phát Hành 2023-05-14
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển saddiqs1
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://csaccounts.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CS Accounts Extension",
    "description": "csaccounts.com extension to view CS accounts in steam profile page",
    "version": "1.1.0",
    "action": {
        "default_icon": {
            "16": "icon-16x16.png",
            "32": "icon-32x32.png",
            "48": "icon-32x32.png",
            "128": "icon-32x32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*",
                "*:\/\/*.steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/allcomments*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/allcomments*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "https:\/\/csaccounts.com\/api\/*"
    ]
}