Faceit lobby extension
Helper revealing players performance while map picking.
Faceit lobby extensionคืออะไร?
Faceit lobby extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://tuscan.pro และคุณลักษณะหลักของมันคือ "Helper revealing players performance while map picking."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Faceit lobby extension
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } ] } |