Battlelog BF4 Player Count Checker

Makes servers with spoofed player counts visible and displays the proper, actual player count in place of the spoofed playercount!

Battlelog BF4 Player Count Checkerคืออะไร?

Battlelog BF4 Player Count Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yolo และคุณลักษณะหลักของมันคือ "Makes servers with spoofed player counts visible and displays the proper, actual player count in place of the spoofed playercount!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Battlelog BF4 Player Count Checker

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

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

                        Source code: https://github.com/TheBauwssss/BattlelogPlayerCountChecker
YouTube working example: https://www.youtube.com/watch?v=C_YLme1_Pk8

A Chrome extension that shows when a server is reporting a fake player count (spoofing), instead displaying the correct player count instead of the fake player count. Servers marked with a green check mark do not spoof their player count, servers marked with a red cross and the text "SPOOFED" do spoof or fake their player count. This extension is basically an anti-seeder; server owners are misusing the seeding plugins, filling servers with all these fake players to stimulate real players to join too, but instead they are killing the game. When a real player joins a server that was supposed to be almost full, it is very disappointing to see that the server is actually empty after sitting through many minutes of loading screens. You can clearly see which servers are empty when running this plugin, and you can clearly see the servers that are actually full of players too!                    

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

ชื่อ Battlelog BF4 Player Count Checker Battlelog BF4 Player Count Checker
ID kobhgndjbalfbieppfglfamlglgdfmah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/battlelog-bf4-player-coun/kobhgndjbalfbieppfglfamlglgdfmah
คำอธิบาย Makes servers with spoofed player counts visible and displays the proper, actual player count in place of the spoofed playercount!
ขนาดไฟล์ 14.02 MB
จำนวนการติดตั้ง 4,714
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2021-07-31
วันที่เผยแพร่ 2019-12-25
คะแนน 4.91/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา yolo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/TheBauwssss/BattlelogPlayerCountChecker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Battlelog BF4 Player Count Checker",
    "short_name": "BF4 Anti Spoofer",
    "version": "0.1.1",
    "description": "Makes servers with spoofed player counts visible and displays the proper, actual player count in place of the spoofed playercount!",
    "icons": {
        "16": "icons\/icon_16px.png",
        "32": "icons\/icon_32px.png",
        "48": "icons\/icon_48px.png",
        "64": "icons\/icon_64px.png",
        "128": "icons\/icon_128px.png"
    },
    "homepage_url": "https:\/\/github.com\/TheBauwssss\/BattlelogPlayerCountChecker",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.battlefield.com\/bf4*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.battlefield.com\/bf4*"
            ],
            "js": [
                "libraries\/font-awesome\/js\/all.js",
                "libraries\/jquery-3.3.1.js",
                "battlelog.js"
            ],
            "css": [
                "libraries\/font-awesome\/css\/all.css",
                "battlelog.css"
            ]
        }
    ]
}