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.

Was ist One-click Decklist?

One-click Decklist ist eine Chrome-Erweiterung, die von arzmir entwickelt wurde, und ihr Hauptmerkmal ist "Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.".

Erweiterungsscreenshots

screenshot

One-click Decklist-Erweiterungs-CRX-Datei herunterladen

Laden Sie One-click Decklist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name One-click Decklist One-click Decklist
ID gdgfplcaolbjcgcbibclmbiedcgignae
Offizielle URL https://chrome.google.com/webstore/detail/one-click-decklist/gdgfplcaolbjcgcbibclmbiedcgignae
Beschreibung Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.
Dateigröße 766 KB
Installationsanzahl 11
Aktuelle Version 1.0
Letztes Update 2014-09-25
Veröffentlichungsdatum 2014-09-25
Entwickler arzmir
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}