Steam Profile Modifier

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

Co je Steam Profile Modifier?

Steam Profile Modifier je rozšíření Chrome vyvinuté 16ROCK, a jeho hlavní funkcí je „The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Steam Profile Modifier

Stáhněte si soubory rozšíření Steam Profile Modifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Steam Profile Modifier Steam Profile Modifier
ID lfjdaphbejfpncjfebkbcganmkinhhfl
Oficiální URL https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl
Popis The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Velikost souboru 469 KB
Počet instalací 1,661
Aktuální Verze 2.1.2
Poslední Aktualizace 2023-12-22
Datum Vydání 2022-10-12
Hodnocení 4.00/5 Celkem 13 Hodnocení
Vývojář 16ROCK
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://sites.google.com/view/boostercreator/privacy-policy
Podporované Jazyky 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"
            ]
        }
    ]
}