Faceit lobby extension
Helper revealing players performance while map picking.
What is Faceit lobby extension?
Faceit lobby extension is a Chrome extension developed by http://tuscan.pro, and its main feature is "Helper revealing players performance while map picking.".
Extension Screenshots
Download Faceit lobby extension Extension CRX File
Download Faceit lobby extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | iocddpjkmoaaminicflaggnckdainlef |
Official URL | https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef |
Description | Helper revealing players performance while map picking. |
File Size | 62.7 KB |
Installation Count | 734 |
Current Version | 0.1.0 |
Last Updated | 2020-03-12 |
Publish Date | 2020-03-12 |
Rating | 4.50/5 Total 2 Ratings |
Developer | http://tuscan.pro |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |