DeckList

Search for Magic: The Gathering cards, click to build a list

Apa itu DeckList?

DeckList adalah ekstensi Chrome yang dikembangkan oleh Devin Rieger, dan fitur utamanya adalah "Search for Magic: The Gathering cards, click to build a list".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi DeckList

Unduh file ekstensi DeckList dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Impact-Site-Verification: 0bd41164-2b00-4235-91b3-1e0248e81546

A build on-the-fly decklist extension for Magic: The Gathering. The extension works by adding an "add" icon to individual cards on popular Magic: The Gathering sites.

Clicking the add icon will add the card to your list. Clicking on the icon again (which changes to a green checkmark for cards on your list) will remove the card from your list.

Clicking on the extension icon opens up a visual representation of your list, as well as options to edit it. You may edit the quantity and remove cards that you have added to the list. The extension UI also allows for downloading a .txt file and copying to the clipboard, as well as clearing the list.

Hovering over a card's name in the list will show a preview image of the card.

*NEW* You can now directly buy cards in your list using the "TCGPlayer" button! This will open a new tab in TCGPlayer's Mass Entry with your cards preloaded ... and I'll get a tiny kickback to help development costs :)

You can also export directly to Archidekt for easy deck building.

Supported Sites:
- Scryfall
- Gatherer
- Magic Spoiler
- EDHRec
- Cube Cobra
- TCGPlayer
- StrictlyBetter

v1.3.2 Notes:
- Archidekt export
- Style / button changes
- Move native EDHRec button to top left of card so they don't overlap

v1.3.1 Notes:
- Manifest description update

v1.3.0 Notes:
- Actually fixed the 1.2.1 issue.
- Added Buy option which will send users to TCGPlayer Mass Entry

v1.2.1 Notes:
- Fixed an issue where the list was exceeding local storage size limits past ~50 cards or so.

v1.2.0 Notes:
- Images! Hover over the card name in the extension popup to view a preview of the card. This uses Scryfall's fuzzy search API endpoint to get the image URI when the card is added to the list, and the images themselves are requested when the popup opens.
- Slightly smaller font and larger popup box to accommodate images as well as DFMCs. They have really long names and I want to avoid an overflow situation.
- Some refactoring and optimization, as well as code comments.

v1.1.1 Notes:
- Fixes for EDHRec site updates.

v1.1 Notes:
- Added support for TCGPlayer, Cube Cobra, and StrictlyBetter
- Fixed SPA bug, the funkiness seen on EDHRec should be resolved now
- Refactored main.js

Known Issues:
- Partners on EDHRec are funky and will require some time to figure out how to support
- TCGPlayer does not differentiate their products in any meaningful way on search result pages. This means that the "add" button will appear on any product, not just Magic cards.

Desired Features:
- Multiple lists (this may be a breaking change, in that the underlying storage structure would have to change and thus users would lose any current list)
- Text import
- Prices

Notes:

a) The extension can only add cards from sites that include the card name in proximity to the card tile. The sites it currently works on have the actual card names typically as alt text of the card image. Unfortunately some sites don't follow this format (such as Mythic Spoiler which uses a name-like slug instead) so the extension will not work on those sites. If you would like to add another site please contact me and I will investigate!

b) EDHRec released a similar feature during development of this project for their site. The extension code will move the EDHRec feature in favor of the extension's functionality.

c) This project is open source. If you would like to contribute please check out the github page at https://github.com/devinrieger/decklist                    

Informasi Dasar Ekstensi

Nama DeckList DeckList
ID olaihnekdjdoomenifalkoicemdijjla
URL Resmi https://chromewebstore.google.com/detail/decklist/olaihnekdjdoomenifalkoicemdijjla
Deskripsi Search for Magic: The Gathering cards, click to build a list
Ukuran File 95.27 KB
Jumlah Instalasi 180
Versi Saat Ini 1.3.2
Terakhir Diperbarui 2023-12-04
Tanggal Publikasi 2020-10-12
Penilaian 4.33/5 Total 6 Penilaian
Pengembang Devin Rieger
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DeckList",
    "version": "1.3.2",
    "description": "Search for Magic: The Gathering cards, click to build a list",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "clipboardWrite",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scryfall.com\/*",
                "https:\/\/gatherer.wizards.com\/*",
                "https:\/\/edhrec.com\/*",
                "https:\/\/www.magicspoiler.com\/*",
                "https:\/\/www.tcgplayer.com\/*",
                "https:\/\/cubecobra.com\/*",
                "https:\/\/www.strictlybetter.eu\/*"
            ],
            "js": [
                "contentscripts\/main.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.ttf"
    ],
    "manifest_version": 2
}