GTA V Item Stats

View GTA V item stat numbers on the SocialClub website

GTA V Item Statsคืออะไร?

GTA V Item Stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย private และคุณลักษณะหลักของมันคือ "View GTA V item stat numbers on the SocialClub website"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GTA V Item Stats

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

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

                        View GTA V item stat numbers on the SocialClub website

This extension alters the format of Rockstar's SocialClub website so that you can see vehicles and weapon data in a tabular and sortable format. This way you can easily find out what the best vehicles and weapons for Grand Theft Auto V are! To use it, click on the extension's icon to be directed to the official Grand Theft Auto V page. By default you will land on the Super car page, but you can switch to any category you want.                    

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

ชื่อ GTA V Item Stats GTA V Item Stats
ID bmcocmgndgkfbanffnpndblmocebfedf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gta-v-item-stats/bmcocmgndgkfbanffnpndblmocebfedf
คำอธิบาย View GTA V item stat numbers on the SocialClub website
ขนาดไฟล์ 77.61 KB
จำนวนการติดตั้ง 629
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2019-12-21
วันที่เผยแพร่ 2019-12-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา private
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GTA V Item Stats",
    "version": "2",
    "description": "View GTA V item stat numbers on the SocialClub website",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/socialclub.rockstargames.com\/games\/gtav\/*"
            ],
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "scripts\/jquery-3.3.1.min.js",
                "scripts\/stupidtable.min.js",
                "scripts\/extension.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2
}