MTG Price Gatherer

Adds Magic card prices to Gatherer

MTG Price Gatherer क्या है?

MTG Price Gatherer yuvz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Magic card prices to Gatherer"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में MTG Price Gatherer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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