TCGplayer Shopping Assistant

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

Qu'est-ce que TCGplayer Shopping Assistant ?

TCGplayer Shopping Assistant est une extension Chrome développée par catchpennyaustinh, et sa fonction principale est "An extension for flagging good (and bad) sellers on TCGplayer".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension TCGplayer Shopping Assistant

Téléchargez les fichiers d'extension TCGplayer Shopping Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom TCGplayer Shopping Assistant TCGplayer Shopping Assistant
ID mhdggnlkeihohoglnbhhmcleflegjnee
URL Officiel https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee
Description An extension for flagging good (and bad) sellers on TCGplayer
Taille du Fichier 7.9 KB
Nombre d'Installations 104
Version Actuelle 3.2.2
Dernière Mise à Jour 2023-12-26
Date de Publication 2022-07-10
Évaluation 5.00/5 Total 5 Évaluations
Développeur catchpennyaustinh
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ahallaha/tcgplayer-seller-flagger-chrome
URL de la Page d'Aide https://github.com/ahallaha/tcgplayer-seller-flagger-chrome
Langues Prises en Charge 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"
    }
}