MTG Scryer
A quick Magic the Gathering card search extension.
MTG Scryerとは何ですか?
MTG Scryerはnmcginnによって開発されたChromeの拡張機能で、その主な機能は「A quick Magic the Gathering card search extension.」です。
拡張機能のスクリーンショット
MTG Scryer拡張機能のCRXファイルをダウンロード
MTG Scryer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an extension for quick Magic the Gathering card search, using the scryfall.com API. 拡張機能の基本情報
| 名前 | |
| ID | mlpgicpdbjmgldbgepjfhkemjgpphlnf |
| 公式URL | https://chromewebstore.google.com/detail/mtg-scryer/mlpgicpdbjmgldbgepjfhkemjgpphlnf |
| 説明 | A quick Magic the Gathering card search extension. |
| ファイルサイズ | 630 KB |
| インストール数 | 48 |
| 現在のバージョン | 0.2.2 |
| 最終更新日 | 2018-06-05 |
| 公開日 | 2018-06-05 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | nmcginn |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/nmcginn/mtg-scryer |
| ヘルプページのURL | https://github.com/nmcginn/mtg-scryer/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "MTG Scryer",
"version": "0.2.2",
"description": "A quick Magic the Gathering card search extension.",
"permissions": [
"declarativeContent"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Shift+S"
},
"description": "Opens Card Search"
}
},
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"128": "icon_128.png",
"64": "icon_64.png",
"32": "icon_32.png",
"16": "icon_16.png"
}
},
"icons": {
"128": "icon_128.png",
"64": "icon_64.png",
"32": "icon_32.png",
"16": "icon_16.png"
},
"manifest_version": 2
} | |