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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A web extension for Path Of Exile players, that shows you the impact an item listed on pathofexile.com/trade has on your character."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PoE Impact Trading एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |