Faceit lobby extension

Helper revealing players performance while map picking.

Faceit lobby extension là gì?

Faceit lobby extension là một tiện ích mở rộng Chrome được phát triển bởi http://tuscan.pro, và tính năng chính của nó là "Helper revealing players performance while map picking.".

Ả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 Faceit lobby extension

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

                        This is a tool which helps during map picking on Faceit. The extension provides additional information about queued players performance on particular maps, thus it should help in making more thought-out decision about which map should be played or banned in the first place.                    

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

Tên Faceit lobby extension Faceit lobby extension
ID iocddpjkmoaaminicflaggnckdainlef
URL Chính Thức https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef
Mô tả Helper revealing players performance while map picking.
Kích Thước Tệp 62.7 KB
Số Lần Cài Đặt 734
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2020-03-12
Ngày Phát Hành 2020-03-12
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://tuscan.pro
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Faceit lobby extension",
    "description": "Helper revealing players performance while map picking.",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.faceit.com\/*",
                "https:\/\/tuscan.pro\/*"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ]
}