Steam inline listings

Fine tune your steam item price by looking at actual listings and not at the cluttered graph (you can switch back to graph)

Was ist Steam inline listings?

Steam inline listings ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Fine tune your steam item price by looking at actual listings and not at the cluttered graph (you can switch back to graph)".

Erweiterungsscreenshots

screenshot
screenshot

Steam inline listings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Steam inline listings-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

                        Fine tune your steam item price by looking at actual listings and not at the cluttered graph of past sales (you can switch back to graph at any time)                    

Grundlegende Informationen zur Erweiterung

Name Steam inline listings Steam inline listings
ID leljgoliocpdnnmjnpnajeiinlapifde
Offizielle URL https://chromewebstore.google.com/detail/steam-inline-listings/leljgoliocpdnnmjnpnajeiinlapifde
Beschreibung Fine tune your steam item price by looking at actual listings and not at the cluttered graph (you can switch back to graph)
Dateigröße 39.79 KB
Installationsanzahl 69
Aktuelle Version 1.0
Letztes Update 2014-01-27
Veröffentlichungsdatum 2014-01-26
Bewertung 1.00/5 Insgesamt 3 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam inline listings",
    "description": "Fine tune your steam item price by looking at actual listings and not at the cluttered graph (you can switch back to graph)",
    "version": "1.0",
    "permissions": [
        "webRequest",
        "http:\/\/steamcommunity.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "jquery-2.0.3.min.js",
        "jquery-2.0.3.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/steamcommunity.com\/id\/*\/inventory\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "stuff.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}