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 là gì?
PoE Impact Trading là một tiện ích mở rộng Chrome được phát triển bởi François Mentec, và tính năng chính của nó là "A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PoE Impact Trading
Tải xuống các tệp mở rộng PoE Impact Trading dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PoE Impact Trading |
ID | ckfnddafphjahhiadjogilncdegmbpkm |
URL Chính Thức | https://chromewebstore.google.com/detail/poe-impact-trading/ckfnddafphjahhiadjogilncdegmbpkm |
Mô tả | A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character. |
Kích Thước Tệp | 12.13 MB |
Số Lần Cài Đặt | 2,495 |
Phiên Bản Hiện Tại | 0.5 |
Cập Nhật Lần Cuối | 2021-11-16 |
Ngày Phát Hành | 2020-07-10 |
Đánh Giá | 4.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | François Mentec |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/FrancoisMentec/PoE-Impact-Trading |
URL Trang Trợ Giúp | https://github.com/FrancoisMentec/PoE-Impact-Trading |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |