DeckList

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

什么是DeckList?

DeckList是由Devin Rieger开发的Chrome扩展程序,该扩展的主要功能是“Search for Magic: The Gathering cards, click to build a list”。

扩展截图

screenshot
screenshot
screenshot

下载DeckList扩展crx文件

下载DeckList扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 DeckList DeckList
ID olaihnekdjdoomenifalkoicemdijjla
官方URL https://chromewebstore.google.com/detail/decklist/olaihnekdjdoomenifalkoicemdijjla
简介 Search for Magic: The Gathering cards, click to build a list
文件大小 95.27 KB
安装次数 180
当前版本 1.3.2
更新时间 2023-12-04
上架时间 2020-10-12
评分 4.33/5 共6次评分
开发者 Devin Rieger
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}