MTG Price Gatherer

Adds Magic card prices to Gatherer

什么是MTG Price Gatherer?

MTG Price Gatherer是由yuvz开发的Chrome扩展程序,该扩展的主要功能是“Adds Magic card prices to Gatherer”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载MTG Price Gatherer扩展crx文件

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