MTG Scryer

A quick Magic the Gathering card search extension.

Cos'è MTG Scryer?

MTG Scryer è un'estensione di Chrome sviluppata da nmcginn, e la sua funzione principale è "A quick Magic the Gathering card search extension.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione MTG Scryer

Scarica i file di estensione MTG Scryer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is an extension for quick Magic the Gathering card search, using the scryfall.com API.                    

Informazioni di Base sull'Estensione

Nome MTG Scryer MTG Scryer
ID mlpgicpdbjmgldbgepjfhkemjgpphlnf
URL Ufficiale https://chromewebstore.google.com/detail/mtg-scryer/mlpgicpdbjmgldbgepjfhkemjgpphlnf
Descrizione A quick Magic the Gathering card search extension.
Dimensione del File 630 KB
Conteggio Installazioni 48
Versione Corrente 0.2.2
Ultimo Aggiornamento 2018-06-05
Data di Pubblicazione 2018-06-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore nmcginn
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nmcginn/mtg-scryer
URL della Pagina di Aiuto https://github.com/nmcginn/mtg-scryer/issues
Lingue Supportate 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
}