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文件

下载Faceit lobby extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}