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
Eメール [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"
            ]
        }
    ]
}