TCGplayer Shopping Assistant
An extension for flagging good (and bad) sellers on TCGplayer
Cos'è TCGplayer Shopping Assistant?
TCGplayer Shopping Assistant è un'estensione di Chrome sviluppata da catchpennyaustinh, e la sua funzione principale è "An extension for flagging good (and bad) sellers on TCGplayer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TCGplayer Shopping Assistant
Scarica i file di estensione TCGplayer Shopping Assistant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | TCGplayer Shopping Assistant |
ID | mhdggnlkeihohoglnbhhmcleflegjnee |
URL Ufficiale | https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee |
Descrizione | An extension for flagging good (and bad) sellers on TCGplayer |
Dimensione del File | 7.9 KB |
Conteggio Installazioni | 104 |
Versione Corrente | 3.2.2 |
Ultimo Aggiornamento | 2023-12-26 |
Data di Pubblicazione | 2022-07-10 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | catchpennyaustinh |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
URL della Pagina di Aiuto | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
Lingue Supportate | 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" } } |