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
官方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"
            ]
        }
    ]
}