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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}