MTG Price Gatherer

Adds Magic card prices to Gatherer

MTG Price Gatherer là gì?

MTG Price Gatherer là một tiện ích mở rộng Chrome được phát triển bởi yuvz, và tính năng chính của nó là "Adds Magic card prices to Gatherer".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MTG Price Gatherer

Tải xuống các tệp mở rộng MTG Price Gatherer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MTG Price Gatherer MTG Price Gatherer
ID gcpkohnhcheajaneelkpaiebgkbdafmi
URL Chính Thức https://chromewebstore.google.com/detail/mtg-price-gatherer/gcpkohnhcheajaneelkpaiebgkbdafmi
Mô tả Adds Magic card prices to Gatherer
Kích Thước Tệp 1.11 MB
Số Lần Cài Đặt 449
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2018-11-21
Ngày Phát Hành 2018-11-21
Đánh Giá 3.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển yuvz
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ygnessin/chromegatherer/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}