MTG Scryer
A quick Magic the Gathering card search extension.
What is MTG Scryer?
MTG Scryer is a Chrome extension developed by nmcginn, and its main feature is "A quick Magic the Gathering card search extension.".
Extension Screenshots
Download MTG Scryer Extension CRX File
Download MTG Scryer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is an extension for quick Magic the Gathering card search, using the scryfall.com API.
Extension Basic Information
Name | MTG Scryer |
ID | mlpgicpdbjmgldbgepjfhkemjgpphlnf |
Official URL | https://chromewebstore.google.com/detail/mtg-scryer/mlpgicpdbjmgldbgepjfhkemjgpphlnf |
Description | A quick Magic the Gathering card search extension. |
File Size | 630 KB |
Installation Count | 48 |
Current Version | 0.2.2 |
Last Updated | 2018-06-05 |
Publish Date | 2018-06-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | nmcginn |
Payment Type | free |
Extension Website | https://github.com/nmcginn/mtg-scryer |
Help Page URL | https://github.com/nmcginn/mtg-scryer/issues |
Supported Languages | 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 } |