MTG Price Gatherer
Adds Magic card prices to Gatherer
MTG Price Gathererとは何ですか?
MTG Price Gathererはyuvzによって開発されたChromeの拡張機能で、その主な機能は「Adds Magic card prices to Gatherer」です。
拡張機能のスクリーンショット
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 |
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" ] } ] } |