PoB Trade Helper

A web extension that connects to your local PoB and shows you the impact of trade on your build.

PoB Trade Helperคืออะไร?

PoB Trade Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย unremem และคุณลักษณะหลักของมันคือ "A web extension that connects to your local PoB and shows you the impact of trade on your build."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PoB Trade Helper

ดาวน์โหลดไฟล์ส่วนขยาย PoB Trade Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension connect to user's local Path Of Building app to calculate the stats impact of specific items in https://www.pathofexile.com/trade, so that the users can easily tell whether / how big of an improvement items would bring when trading in Path Of Exile game.

NOTE: This extension requires some local set up with Path Of Building to work properly, for instructions and support, visit the Github page: https://github.com/unremem/PoBTradeHelper                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PoB Trade Helper PoB Trade Helper
ID jfmagnicmcjddboobcfaicohajkdmcpc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pob-trade-helper/jfmagnicmcjddboobcfaicohajkdmcpc
คำอธิบาย A web extension that connects to your local PoB and shows you the impact of trade on your build.
ขนาดไฟล์ 354 KB
จำนวนการติดตั้ง 816
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2023-05-21
วันที่เผยแพร่ 2023-05-15
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา unremem
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/unremem/PoBTradeHelper
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PoB Trade Helper",
    "version": "0.1",
    "description": "A web extension that connects to your local PoB and shows you the impact of trade on your build.",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "128": "img\/icon-128.png",
        "335": "img\/icon-335.png"
    },
    "action": {
        "default_icon": {
            "38": "img\/icon-38.png",
            "128": "img\/icon-128.png",
            "335": "img\/icon-335.png"
        },
        "default_title": "PoB Trade Helper"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.pathofexile.com\/trade\/*"
            ],
            "css": [
                "css\/style.css",
                "css\/trade.css"
            ],
            "js": [
                "js\/trade.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/trade-injected.js",
                "img\/icon-40.png",
                "img\/error-40.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "nativeMessaging"
    ]
}