TCGplayer Shopping Assistant
An extension for flagging good (and bad) sellers on TCGplayer
¿Qué es TCGplayer Shopping Assistant?
TCGplayer Shopping Assistant es una extensión de Chrome desarrollada por catchpennyaustinh, y su función principal es "An extension for flagging good (and bad) sellers on TCGplayer".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TCGplayer Shopping Assistant
Descarga archivos de extensión TCGplayer Shopping Assistant en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | TCGplayer Shopping Assistant |
ID | mhdggnlkeihohoglnbhhmcleflegjnee |
URL Oficial | https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee |
Descripción | An extension for flagging good (and bad) sellers on TCGplayer |
Tamaño del Archivo | 7.9 KB |
Cantidad de Instalaciones | 104 |
Versión Actual | 3.2.2 |
Última Actualización | 2023-12-26 |
Fecha de Publicación | 2022-07-10 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | catchpennyaustinh |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
URL de la Página de Ayuda | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
Idiomas Soportados | 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" } } |