Faceit lobby extension
Helper revealing players performance while map picking.
Vad är Faceit lobby extension?
Faceit lobby extension är en Chrome-tillägg utvecklad av http://tuscan.pro, och dess huvudfunktion är "Helper revealing players performance while map picking.".
Tilläggsskärmbilder
Ladda ner Faceit lobby extension-förlängningens CRX-fil
Ladda ner Faceit lobby extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | iocddpjkmoaaminicflaggnckdainlef |
| Officiell webbadress | https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef |
| Beskrivning | Helper revealing players performance while map picking. |
| Filstorlek | 62.7 KB |
| Antal Installationer | 734 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2020-03-12 |
| Publiceringsdatum | 2020-03-12 |
| Betyg | 4.50/5 Totalt 2 Betyg |
| Utvecklare | http://tuscan.pro |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |