CS:GO Inventory Pricer
A simple utility to price individual items in a users CS:GO inventory.
什么是CS:GO Inventory Pricer?
CS:GO Inventory Pricer是由ECB2开发的Chrome扩展程序,该扩展的主要功能是“A simple utility to price individual items in a users CS:GO inventory.”。
下载CS:GO Inventory Pricer扩展crx文件
下载CS:GO Inventory Pricer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | ![]() |
ID | hjogfgneocbckolmlahoahedogdajonh |
官方URL | https://chrome.google.com/webstore/detail/csgo-inventory-pricer/hjogfgneocbckolmlahoahedogdajonh |
简介 | A simple utility to price individual items in a users CS:GO inventory. |
文件大小 | 88.46 KB |
安装次数 | 126 |
当前版本 | 0.6.5 |
更新时间 | 2015-08-28 |
上架时间 | 2015-08-28 |
评分 | 3.00/5 共2次评分 |
开发者 | ECB2 |
付费类型 | free |
支持的语言 | 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" ] } ] } |