Faceit lobby extension
Helper revealing players performance while map picking.
Wat is Faceit lobby extension?
Faceit lobby extension is een Chrome-extensie ontwikkeld door http://tuscan.pro, en de belangrijkste functie is "Helper revealing players performance while map picking.".
Extensie Screenshots
Download het CRX-bestand van de extensie Faceit lobby extension
Download Faceit lobby extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | iocddpjkmoaaminicflaggnckdainlef |
| Officiële URL | https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef |
| Beschrijving | Helper revealing players performance while map picking. |
| Bestandsgrootte | 62.7 KB |
| Aantal Installaties | 734 |
| Huidige Versie | 0.1.0 |
| Laatst Bijgewerkt | 2020-03-12 |
| Publicatiedatum | 2020-03-12 |
| Beoordeling | 4.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | http://tuscan.pro |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |