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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |