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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης PoE Impact Trading

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

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

                        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 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"
    ]
}