One-click Decklist

Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.

¿Qué es One-click Decklist?

One-click Decklist es una extensión de Chrome desarrollada por arzmir, y su función principal es "Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión One-click Decklist

Descarga archivos de extensión One-click Decklist en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A simple chrome extension to simplify the selection of cards for deck building. Just open a visual spoiler search on http://gatherer.wizards.com and start clicking. The names are populated in the list and you can afterwards just copy it to whatever deck building tool you prefer (Deckbox/TappedOut).

Enjoy. :)                    

Información Básica de la Extensión

Nombre One-click Decklist One-click Decklist
ID gdgfplcaolbjcgcbibclmbiedcgignae
URL Oficial https://chrome.google.com/webstore/detail/one-click-decklist/gdgfplcaolbjcgcbibclmbiedcgignae
Descripción Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.
Tamaño del Archivo 766 KB
Cantidad de Instalaciones 11
Versión Actual 1.0
Última Actualización 2014-09-25
Fecha de Publicación 2014-09-25
Desarrollador arzmir
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "One-click Decklist",
    "description": "Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.",
    "version": "1.0",
    "permissions": [
        "*:\/\/gatherer.wizards.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.1.1.min.js",
                "inject.js"
            ],
            "css": [
                "inject.css"
            ],
            "matches": [
                "*:\/\/gatherer.wizards.com\/*output=spoiler*"
            ]
        }
    ],
    "web_accessible_resources": [
        "plus.png"
    ]
}