Path of Exile MTX shop filter

Filter capability for the Path of Exile shop

Path of Exile MTX shop filterคืออะไร?

Path of Exile MTX shop filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David M และคุณลักษณะหลักของมันคือ "Filter capability for the Path of Exile shop"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Path of Exile MTX shop filter

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

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

                        This extension extends the microtransaction store for the online action rpg Path of Exile.

One of my greatest gripes with their store is the fact that i can't easily search for stuff i want to buy, this extension aims to change that.

The extension adds a small box to the bottom right of the store, where you can search for microtransactions on your current page, it will NOT work on the overview of store categories.

You can also filter out microtransactions you already own (this only works on items like hideouts because you can only own one of them).

I also added the functionality to filter out microtransactions you can't afford!

All the information this extension needs is extracted from the shop page, the extension ONLY runs locally and does NOT communicate with any external party whatsoever.

Path of Exile is a free online-only action RPG made by Grinding Gear Games in New Zealand, i am not assiociated with Grinding Gear Games nor do i own any rights.                    

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

ชื่อ Path of Exile MTX shop filter Path of Exile MTX shop filter
ID ofdaecloibpdalkpanilogjhghfcmkca
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/path-of-exile-mtx-shop-fi/ofdaecloibpdalkpanilogjhghfcmkca
คำอธิบาย Filter capability for the Path of Exile shop
ขนาดไฟล์ 42.37 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-07-19
วันที่เผยแพร่ 2019-09-18
ผู้พัฒนา David M
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Path of Exile MTX shop filter",
    "version": "1.0.0",
    "description": "Filter capability for the Path of Exile shop",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/www.pathofexile.com\/shop\/*"
    ],
    "web_accessible_resources": [
        "filterbar.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.pathofexile.com\/shop\/*"
            ],
            "css": [
                "filterbar.css"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "main.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}