PoE Impact Trading
A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character.
PoE Impact Tradingとは何ですか?
PoE Impact TradingはFrançois Mentecによって開発されたChromeの拡張機能で、その主な機能は「A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character.」です。
拡張機能のスクリーンショット
PoE Impact Trading拡張機能のCRXファイルをダウンロード
PoE Impact Trading拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is designed for Path Of Exile players. It will show the impact an item listed on https://www.pathofexile.com/trade has on a build. It's possible by using https://pob.party/ a web port of the notorious Path Of Building desktop application which compute everything about a build (like dps, life, resistance, etc). Enjoy!
拡張機能の基本情報
名前 | PoE Impact Trading |
ID | ckfnddafphjahhiadjogilncdegmbpkm |
公式URL | https://chromewebstore.google.com/detail/poe-impact-trading/ckfnddafphjahhiadjogilncdegmbpkm |
説明 | A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character. |
ファイルサイズ | 12.13 MB |
インストール数 | 2,495 |
現在のバージョン | 0.5 |
最終更新日 | 2021-11-16 |
公開日 | 2020-07-10 |
評価 | 4.20/5 合計 5 レビュー |
開発者 | François Mentec |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/FrancoisMentec/PoE-Impact-Trading |
ヘルプページのURL | https://github.com/FrancoisMentec/PoE-Impact-Trading |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PoE Impact Trading", "version": "0.5", "description": "A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com\/trade has on your character.", "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "128": "img\/icon-128.png", "335": "img\/icon-335.png" }, "browser_action": { "default_icon": { "38": "img\/icon-38.png", "128": "img\/icon-128.png", "335": "img\/icon-335.png" }, "default_title": "PoE Impact Trading" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.pathofexile.com\/trade\/*" ], "css": [ "css\/style.css", "css\/trade.css" ], "js": [ "js\/trade.js" ] }, { "matches": [ "https:\/\/pob.party\/*" ], "js": [ "js\/pob.js" ], "all_frames": true } ], "web_accessible_resources": [ "js\/trade-injected.js", "js\/pob-injected.js", "img\/icon-40.png", "img\/error-40.png" ], "permissions": [ "storage" ] } |