MTG Price Gatherer

Adds Magic card prices to Gatherer

Τι είναι το MTG Price Gatherer;

Το MTG Price Gatherer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yuvz, και η κύρια λειτουργία του είναι "Adds Magic card prices to Gatherer".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MTG Price Gatherer

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

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

                        This super light-weight extension injects prices from TCGPlayer.com right onto the Gatherer page! You'll see the HIGH, LOW, MEDIAN, and FOIL prices for every Magic card from every set, without leaving gatherer.

This project is open source, which means you can read the code yourself and therefore trust the software. And if you are a developer, contributions are welcome! See the code: https://github.com/ygnessin/chromegatherer/

Please rate and review; I read all feedback and take it into serious consideration for the next release. Hope you enjoy!                    

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

Όνομα MTG Price Gatherer MTG Price Gatherer
ID gcpkohnhcheajaneelkpaiebgkbdafmi
Επίσημο URL https://chromewebstore.google.com/detail/mtg-price-gatherer/gcpkohnhcheajaneelkpaiebgkbdafmi
Περιγραφή Adds Magic card prices to Gatherer
Μέγεθος Αρχείου 1.11 MB
Αριθμός Εγκαταστάσεων 449
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2018-11-21
Ημερομηνία Δημοσίευσης 2018-11-21
Αξιολόγηση 3.90/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής yuvz
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ygnessin/chromegatherer/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MTG Price Gatherer",
    "description": "Adds Magic card prices to Gatherer",
    "version": "1.2.2",
    "permissions": [
        "tabs",
        "http:\/\/partner.tcgplayer.com\/"
    ],
    "icons": {
        "128": "images\/icon_128.png",
        "96": "images\/icon_96.png",
        "48": "images\/icon_48.png",
        "16": "images\/icon_16.png"
    },
    "page_action": {
        "default_icon": "images\/default_icon.png",
        "default_title": "Price Gatherer",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/gatherer.wizards.com\/Pages\/Card\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "set_map.js",
                "content.js"
            ]
        }
    ]
}