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.

O que é One-click Decklist?

One-click Decklist é uma extensão do Chrome desenvolvida por arzmir, e sua principal característica é "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 Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão One-click Decklist

Baixe arquivos de extensão One-click Decklist no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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. :)                    

Informações Básicas da Extensão

Nome One-click Decklist One-click Decklist
ID gdgfplcaolbjcgcbibclmbiedcgignae
URL Oficial https://chrome.google.com/webstore/detail/one-click-decklist/gdgfplcaolbjcgcbibclmbiedcgignae
Descrição Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.
Tamanho do Arquivo 766 KB
Contagem de Instalações 11
Versão Atual 1.0
Última Atualização 2014-09-25
Data de Publicação 2014-09-25
Desenvolvedor arzmir
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}