Steam Profile Modifier

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

What is Steam Profile Modifier?

Steam Profile Modifier is a Chrome extension developed by 16ROCK, and its main feature is "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Steam Profile Modifier Extension CRX File

Download Steam Profile Modifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Steam Profile Modifier Steam Profile Modifier
ID lfjdaphbejfpncjfebkbcganmkinhhfl
Official URL https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl
Description The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
File Size 469 KB
Installation Count 1,661
Current Version 2.1.2
Last Updated 2023-12-22
Publish Date 2022-10-12
Rating 4.00/5 Total 13 Ratings
Developer 16ROCK
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sites.google.com/view/boostercreator/privacy-policy
Supported Languages 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"
            ]
        }
    ]
}