CS:GO Inventory Pricer
A simple utility to price individual items in a users CS:GO inventory.
Was ist CS:GO Inventory Pricer?
CS:GO Inventory Pricer ist eine Chrome-Erweiterung, die von ECB2 entwickelt wurde, und ihr Hauptmerkmal ist "A simple utility to price individual items in a users CS:GO inventory.".
CS:GO Inventory Pricer-Erweiterungs-CRX-Datei herunterladen
Laden Sie CS:GO Inventory Pricer-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
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | hjogfgneocbckolmlahoahedogdajonh |
Offizielle URL | https://chrome.google.com/webstore/detail/csgo-inventory-pricer/hjogfgneocbckolmlahoahedogdajonh |
Beschreibung | A simple utility to price individual items in a users CS:GO inventory. |
Dateigröße | 88.46 KB |
Installationsanzahl | 126 |
Aktuelle Version | 0.6.5 |
Letztes Update | 2015-08-28 |
Veröffentlichungsdatum | 2015-08-28 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | ECB2 |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CS:GO Inventory Pricer", "description": "A simple utility to price individual items in a users CS:GO inventory.", "version": "0.6.5", "icons": { "128": "logo.png" }, "permissions": [ "activeTab", "tabs", "storage" ], "background": { "scripts": [ "app\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/128.png" }, "options_page": "settings\/options.html", "content_scripts": [ { "matches": [ "*:\/\/steamcommunity.com\/*\/*\/inventory\/", "*:\/\/steamcommunity.com\/*\/*\/inventory" ], "js": [ "libs\/jquery-2.1.1.min.js", "app\/update_checker.js", "app\/CLogger.js", "app\/CItem.js", "app\/CInventory.js", "app\/CData.js", "app\/main.js" ], "css": [ "app\/css\/update.css", "app\/css\/item.css", "app\/css\/menu.css" ] }, { "matches": [ "*:\/\/steamcommunity.com\/*\/*\/tradeoffers\/", "*:\/\/steamcommunity.com\/*\/*\/tradeoffers\/?history=*", "*:\/\/steamcommunity.com\/*\/*\/tradeoffers" ], "js": [ "libs\/jquery-2.1.1.min.js", "app\/update_checker.js", "app\/CLogger.js", "app\/CItem.js", "app\/CInventory.js", "app\/CData.js", "app\/CPartner.js", "app\/offers.js" ], "css": [ "app\/css\/update.css", "app\/css\/item.css", "app\/css\/menu.css" ] }, { "matches": [ "*:\/\/steamcommunity.com\/market\/listings\/730\/*" ], "js": [ "libs\/jquery-2.1.1.min.js", "app\/update_checker.js", "app\/market.js" ], "css": [ "app\/css\/update.css" ] } ] } |