Steam Profile Modifier

The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…

Steam Profile Modifierคืออะไร?

Steam Profile Modifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 16ROCK และคุณลักษณะหลักของมันคือ "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without spending points. It allows you to try various combinations and make sure your profile looks perfect before making any purchases.                    

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

ชื่อ Steam Profile Modifier Steam Profile Modifier
ID lfjdaphbejfpncjfebkbcganmkinhhfl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl
คำอธิบาย The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
ขนาดไฟล์ 469 KB
จำนวนการติดตั้ง 1,661
เวอร์ชันปัจจุบัน 2.1.2
อัปเดตครั้งล่าสุด 2023-12-22
วันที่เผยแพร่ 2022-10-12
คะแนน 4.00/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา 16ROCK
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/boostercreator/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Profile Modifier",
    "version": "2.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icoSPM16.png",
        "48": "icoSPM48.png",
        "128": "icoSPM128.png"
    },
    "action": {
        "default_icon": "icoSPM128.png",
        "default_title": "Open profile",
        "default_popup": "popup.html"
    },
    "short_name": "SPM",
    "web_accessible_resources": [
        {
            "resources": [
                "json\/*",
                "svg\/*"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/id\/*",
                "https:\/\/steamcommunity.com\/profiles\/*"
            ],
            "run_at": "document_start",
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}