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是由David M開發的Chrome擴展程式,該擴展的主要功能是“Filter capability for the Path of Exile shop”。

擴展截圖

screenshot
screenshot

下載Path of Exile MTX shop filter擴展crx文件

下載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
官方網址 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"
    }
}