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 |
Eメール | [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" } } |