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 |
| 官方網址 | 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"
]
}
]
} | |