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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}