TCGplayer Shopping Assistant
An extension for flagging good (and bad) sellers on TCGplayer
Co je TCGplayer Shopping Assistant?
TCGplayer Shopping Assistant je rozšíření Chrome vyvinuté catchpennyaustinh, a jeho hlavní funkcí je „An extension for flagging good (and bad) sellers on TCGplayer“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření TCGplayer Shopping Assistant
Stáhněte si soubory rozšíření TCGplayer Shopping Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | TCGplayer Shopping Assistant |
ID | mhdggnlkeihohoglnbhhmcleflegjnee |
Oficiální URL | https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee |
Popis | An extension for flagging good (and bad) sellers on TCGplayer |
Velikost souboru | 7.9 KB |
Počet instalací | 104 |
Aktuální Verze | 3.2.2 |
Poslední Aktualizace | 2023-12-26 |
Datum Vydání | 2022-07-10 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | catchpennyaustinh |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
URL Stránky Nápovědy | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
Podporované Jazyky | 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" } } |