CS:GO Inventory Pricer
A simple utility to price individual items in a users CS:GO inventory.
Cos'è CS:GO Inventory Pricer?
CS:GO Inventory Pricer è un'estensione di Chrome sviluppata da ECB2, e la sua funzione principale è "A simple utility to price individual items in a users CS:GO inventory.".
Scarica il file CRX dell'estensione CS:GO Inventory Pricer
Scarica i file di estensione CS:GO Inventory Pricer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | hjogfgneocbckolmlahoahedogdajonh |
URL Ufficiale | https://chrome.google.com/webstore/detail/csgo-inventory-pricer/hjogfgneocbckolmlahoahedogdajonh |
Descrizione | A simple utility to price individual items in a users CS:GO inventory. |
Dimensione del File | 88.46 KB |
Conteggio Installazioni | 126 |
Versione Corrente | 0.6.5 |
Ultimo Aggiornamento | 2015-08-28 |
Data di Pubblicazione | 2015-08-28 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | ECB2 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |