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.
Co to jest One-click Decklist?
One-click Decklist to rozszerzenie Chrome opracowane przez arzmir, a jego główną funkcją jest „Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia One-click Decklist
Pobierz pliki rozszerzeń One-click Decklist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. :)
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gdgfplcaolbjcgcbibclmbiedcgignae |
Oficjalny URL | https://chrome.google.com/webstore/detail/one-click-decklist/gdgfplcaolbjcgcbibclmbiedcgignae |
Opis | Adds the name of clicked Visual Spoiler to a list of cards which you can copy and paste into e.g. Decklist or TappedOut. |
Rozmiar pliku | 766 KB |
Liczba instalacji | 11 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-09-25 |
Data Publikacji | 2014-09-25 |
Deweloper | arzmir |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |