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.
扩展基本信息
名称 | MTG Scryer |
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 } |