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 |
电子邮箱 | [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" ] } |