Steam Plus

SteamPlus is an extension that will enhance your steam experience (Like Steam Inventory Helper, Csgofloat or Csgotrader.app)…

Was ist Steam Plus?

Steam Plus ist eine Chrome-Erweiterung, die von steamplus.app entwickelt wurde, und ihr Hauptmerkmal ist "SteamPlus is an extension that will enhance your steam experience (Like Steam Inventory Helper, Csgofloat or Csgotrader.app)…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Steam Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Steam Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        SteamPlus is an extension that will enhance your steam experience (Like Steam Inventory Helper, Csgofloat or Csgotrader.app)

Enhance work with tradeoffers (Fast check summary of offer, total cost).
Auto accept gift offers (Empty from your side).
With SteamPlus you can list multiple items, quick remove items from listing, edit etc.
With SteamPlus you can check who's selling a specific item on Steam Market.
You can quickly inspect on csgo items floats,rare patterns and prices (including extra charges).
You can quickly inspect how much your csgo inventory costs.
Check lowest price and volume of sales on steam market.
Fast inspect items, stickers, prices on csgo items.
Quick sell or quick buy items on steam market                    

Grundlegende Informationen zur Erweiterung

Name Steam Plus Steam Plus
ID gmgmmjabnmigondjggpcjmhicekiognh
Offizielle URL https://chromewebstore.google.com/detail/steam-plus/gmgmmjabnmigondjggpcjmhicekiognh
Beschreibung SteamPlus is an extension that will enhance your steam experience (Like Steam Inventory Helper, Csgofloat or Csgotrader.app)…
Dateigröße 1.97 MB
Installationsanzahl 2,387
Aktuelle Version 4.0.7
Letztes Update 2023-01-09
Veröffentlichungsdatum 2021-10-05
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler steamplus.app
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.0.7",
    "manifest_version": 3,
    "name": "Steam Plus",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "128.png"
    },
    "icons": {
        "128": "128.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "cookies",
        "declarativeNetRequest",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*\/inventory",
                "*:\/\/steamcommunity.com\/*\/inventory\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "inventoryScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/market",
                "*:\/\/steamcommunity.com\/market\/"
            ],
            "run_at": "document_idle",
            "js": [
                "marketScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/market\/listings\/730*"
            ],
            "run_at": "document_idle",
            "js": [
                "marketListingScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/tradeoffer\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "tradeofferScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*\/tradeoffers*"
            ],
            "run_at": "document_idle",
            "js": [
                "tradeOffersScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*",
                "*:\/\/steamcommunity.com\/profiles\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "profileScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/friends*",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends*"
            ],
            "run_at": "document_idle",
            "js": [
                "friendRequestsScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "128.png"
            ],
            "matches": []
        },
        {
            "resources": [
                "bridge.bundle.js",
                "\/assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}