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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |