Faceit lobby extension

Helper revealing players performance while map picking.

Co to jest Faceit lobby extension?

Faceit lobby extension to rozszerzenie Chrome opracowane przez http://tuscan.pro, a jego główną funkcją jest „Helper revealing players performance while map picking.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Faceit lobby extension

Pobierz pliki rozszerzeń Faceit lobby extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Faceit lobby extension Faceit lobby extension
ID iocddpjkmoaaminicflaggnckdainlef
Oficjalny URL https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef
Opis Helper revealing players performance while map picking.
Rozmiar pliku 62.7 KB
Liczba instalacji 734
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2020-03-12
Data Publikacji 2020-03-12
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper http://tuscan.pro
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}