VisusGG

VisusGG, a browser extension by x3picF4ilx (Bytenote) & MrMaxim, aims to improve the user experience on FACEIT's platform.

VisusGGคืออะไร?

VisusGG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bytenote และคุณลักษณะหลักของมันคือ "VisusGG, a browser extension by x3picF4ilx (Bytenote) & MrMaxim, aims to improve the user experience on FACEIT's platform."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VisusGG

ดาวน์โหลดไฟล์ส่วนขยาย VisusGG ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension offers two additional features that provide valuable insights to the users:

FACEIT win rate stats: 
VisusGG provides insights into the win rate percentage of different maps that players have played. This allows players to identify their strengths and weaknesses on various maps and can influence strategic decisions in selecting maps.

☆ See opponents win percentage (%) during map selection
☆ Toggle compare mode to see statistics for both teams
☆ Switch between time frames or create custom ones
☆ Check past games

FACEIT account on Steam profile: 
This feature allows users to seamlessly view FACEIT account details directly on Steam profiles. It provides a convenient way to verify whether a player has a FACEIT account and to assess their stats.

☆ View FACEIT stats on Steam profiles
☆ Check account status (free, premium, banned, or deactivated) and account creation date
☆ Works with private Steam profiles                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ VisusGG VisusGG
ID kodlabmmaalpolkfolgpahbjehalecki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/visusgg/kodlabmmaalpolkfolgpahbjehalecki
คำอธิบาย VisusGG, a browser extension by x3picF4ilx (Bytenote) & MrMaxim, aims to improve the user experience on FACEIT's platform.
ขนาดไฟล์ 180 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 2.2.3
อัปเดตครั้งล่าสุด 2024-02-06
วันที่เผยแพร่ 2022-12-21
คะแนน 4.62/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา Bytenote
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Bytenote/VisusGG
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VisusGG",
    "description": "VisusGG, a browser extension by x3picF4ilx (Bytenote) & MrMaxim, aims to improve the user experience on FACEIT's platform.",
    "version": "2.2.3",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.faceit.com\/*",
                "https:\/\/beta.faceit.com\/*"
            ],
            "js": [
                "contentFaceIt.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.steamcommunity.com\/profiles\/*",
                "https:\/\/*.steamcommunity.com\/id\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.steamcommunity.com\/id\/*\/allcomments",
                "https:\/\/*.steamcommunity.com\/profiles\/*\/allcomments"
            ],
            "js": [
                "contentSteam.js"
            ],
            "css": [
                "contentSteam.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icon-48.png",
        "default_popup": "popup.html",
        "default_title": "VisusGG"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "imgs\/f00.png",
                "imgs\/f01.png",
                "imgs\/f02.png",
                "imgs\/f03.png",
                "imgs\/f04.png",
                "imgs\/f05.png",
                "imgs\/f06.png",
                "imgs\/f07.png",
                "imgs\/f08.png",
                "imgs\/f09.png",
                "imgs\/f10.png"
            ],
            "matches": [
                "https:\/\/*.steamcommunity.com\/*"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.faceit.com\/*",
        "https:\/\/www.steamcommunity.com\/profiles\/*",
        "https:\/\/www.steamcommunity.com\/id\/*"
    ]
}