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.

ما هو One-click Decklist؟

One-click Decklist هو إضافة Chrome تم تطويرها بواسطة arzmir، والميزة الرئيسية لها هي "Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة One-click Decklist

قم بتنزيل ملفات الامتداد One-click Decklist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم One-click Decklist One-click Decklist
ID gdgfplcaolbjcgcbibclmbiedcgignae
عنوان URL الرسمي https://chrome.google.com/webstore/detail/one-click-decklist/gdgfplcaolbjcgcbibclmbiedcgignae
الوصف Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.
حجم الملف 766 KB
عدد التثبيتات 11
النسخة الحالية 1.0
آخر تحديث 2014-09-25
تاريخ النشر 2014-09-25
المطور arzmir
نوع الدفع free
اللغات المدعومة 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"
    ]
}