Poe Trade QoL

Using the chest structure to trade consumables

Τι είναι το Poe Trade QoL;

Το Poe Trade QoL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Caridas, και η κύρια λειτουργία του είναι "Using the chest structure to trade consumables".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Poe Trade QoL

Λήψη αρχείων επέκτασης Poe Trade QoL σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The standard interface for buying consumables https://www.pathofexile.com/trade/exchange/Standard is catastrophically annoying.

Here are the steps you need to follow to continue enjoying the game:
1. Find the tab where the item can (!) be located, and there are dozens of them.
2. From dozens of elements, choose the one you need, but you still need to find it.
2.1. And if you need to buy fossils or essences, but you don’t know what they are called, then you have to google by property to get the name.
2.2. Or you have to peer into pixels to find the item you need.
3. Even knowing the name, property and photo of the item, we still have to search! There is no sorting on the site.

Each attempt to buy something turns into a detective horror, where the main character will be tormented until he reaches his goal.

The extension solves this problem in a very nice way. We take the structure of the chest from the game and throw it into the browser.

As players, we always know where to find the item we are looking for in the chest. 
Therefore, the extension emulates the structure of the chest in the game, so that any player can buy the necessary items for himself in 3 clicks instead of hundreds of others.
Is it buff?                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Poe Trade QoL Poe Trade QoL
ID ljdhhcfchhfikcdeamifmbbckojjkkmb
Επίσημο URL https://chromewebstore.google.com/detail/poe-trade-qol/ljdhhcfchhfikcdeamifmbbckojjkkmb
Περιγραφή Using the chest structure to trade consumables
Μέγεθος Αρχείου 17.16 MB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 1.4.4
Τελευταία Ενημέρωση 2022-12-12
Ημερομηνία Δημοσίευσης 2022-12-04
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Caridas
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Poe Trade QoL",
    "version": "1.4.4",
    "description": "Using the chest structure to trade consumables",
    "host_permissions": [
        "https:\/\/www.pathofexile.com\/api\/trade\/exchange\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pathofexile.com\/trade\/*"
            ],
            "js": [
                "jquery-3.6.1.min.js",
                "app.js"
            ],
            "css": [
                "pathTrade.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "modalChest.html",
                "*.png",
                "*.jpg",
                "*.css"
            ],
            "matches": [
                "*:\/\/*.pathofexile.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}