TCGplayer Shopping Assistant

An extension for flagging good (and bad) sellers on TCGplayer

What is TCGplayer Shopping Assistant?

TCGplayer Shopping Assistant is a Chrome extension developed by catchpennyaustinh, and its main feature is "An extension for flagging good (and bad) sellers on TCGplayer".

Extension Screenshots

screenshot
screenshot
screenshot

Download TCGplayer Shopping Assistant Extension CRX File

Download TCGplayer Shopping Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to maintain lists of sellers that you wish to buy from and avoid on TCGplayer. It will highlight items from these sellers in the marketplace and in your shopping cart. Now including seller locations to help you select nearby sellers without having to visit every seller profile.                    

Extension Basic Information

Name TCGplayer Shopping Assistant TCGplayer Shopping Assistant
ID mhdggnlkeihohoglnbhhmcleflegjnee
Official URL https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee
Description An extension for flagging good (and bad) sellers on TCGplayer
File Size 7.9 KB
Installation Count 104
Current Version 3.2.2
Last Updated 2023-12-26
Publish Date 2022-07-10
Rating 5.00/5 Total 5 Ratings
Developer catchpennyaustinh
Email [email protected]
Payment Type free
Extension Website https://github.com/ahallaha/tcgplayer-seller-flagger-chrome
Help Page URL https://github.com/ahallaha/tcgplayer-seller-flagger-chrome
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TCGplayer Shopping Assistant",
    "description": "An extension for flagging good (and bad) sellers on TCGplayer",
    "version": "3.2.2",
    "content_scripts": [
        {
            "js": [
                "main.min.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www.tcgplayer.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "entry.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/shop.tcgplayer.com\/sellerfeedback\/*",
        "https:\/\/store.tcgplayer.com\/help\/shopdirect"
    ],
    "icons": {
        "32": ".\/icons\/icon-32.png"
    },
    "background": {
        "service_worker": "backgroundScript.js"
    }
}