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是由16ROCK開發的Chrome擴展程式,該擴展的主要功能是“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

下載Steam Profile Modifier擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}