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"
]
}
]
} | |