TCGplayer Shopping Assistant
An extension for flagging good (and bad) sellers on TCGplayer
什么是TCGplayer Shopping Assistant?
TCGplayer Shopping Assistant是由catchpennyaustinh开发的Chrome扩展程序,该扩展的主要功能是“An extension for flagging good (and bad) sellers on TCGplayer”。
扩展截图
下载TCGplayer Shopping Assistant扩展crx文件
下载TCGplayer Shopping Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | TCGplayer Shopping Assistant |
ID | mhdggnlkeihohoglnbhhmcleflegjnee |
官方URL | https://chromewebstore.google.com/detail/tcgplayer-shopping-assist/mhdggnlkeihohoglnbhhmcleflegjnee |
简介 | An extension for flagging good (and bad) sellers on TCGplayer |
文件大小 | 7.9 KB |
安装次数 | 104 |
当前版本 | 3.2.2 |
更新时间 | 2023-12-26 |
上架时间 | 2022-07-10 |
评分 | 5.00/5 共5次评分 |
开发者 | catchpennyaustinh |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
帮助页面URL | https://github.com/ahallaha/tcgplayer-seller-flagger-chrome |
支持的语言 | 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" } } |