TCGplayer Shopping Assistant
An extension for flagging good (and bad) sellers on TCGplayer
Wat is TCGplayer Shopping Assistant?
TCGplayer Shopping Assistant is een Chrome-extensie ontwikkeld door catchpennyaustinh, en de belangrijkste functie is "An extension for flagging good (and bad) sellers on TCGplayer".
Extensie Screenshots
Download het CRX-bestand van de extensie TCGplayer Shopping Assistant
Download TCGplayer Shopping Assistant-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | TCGplayer Shopping Assistant |
ID | mhdggnlkeihohoglnbhhmcleflegjnee |
Officiële URL | https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee |
Beschrijving | An extension for flagging good (and bad) sellers on TCGplayer |
Bestandsgrootte | 7.9 KB |
Aantal Installaties | 104 |
Huidige Versie | 3.2.2 |
Laatst Bijgewerkt | 2023-12-26 |
Publicatiedatum | 2022-07-10 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | catchpennyaustinh |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
Help Pagina-URL | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
Ondersteunde Talen | 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" } } |