Faceit lobby extension

Helper revealing players performance while map picking.

Faceit lobby extension란 무엇입니까?

Faceit lobby extension은(는) http://tuscan.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helper revealing players performance while map picking."입니다.

확장 프로그램 스크린샷

screenshot

Faceit lobby extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Faceit lobby extension Faceit lobby extension
ID iocddpjkmoaaminicflaggnckdainlef
공식 URL https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef
설명 Helper revealing players performance while map picking.
파일 크기 62.7 KB
설치 횟수 734
현재 버전 0.1.0
최근 업데이트 2020-03-12
출시 날짜 2020-03-12
평점 4.50/5 총 2 개의 평점
개발자 http://tuscan.pro
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}