Top Shot Helper
Top Shot Helper
Top Shot Helper란 무엇입니까?
Top Shot Helper은(는) topshothelper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Top Shot Helper"입니다.
확장 프로그램 스크린샷
Top Shot Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
***UPDATE 02/23/21*** The Chrome Store has a review process that takes multiple days to approve any changes made to an extension. So if the NBA Top Shot website makes a change that breaks this extension, it will be multiple days until a working version is available on the official Chrome Store. That being said, while pending changes are being approved you can find the most up to date version here: https://github.com/recnepsbackwards/top_shot_helper Top Shot Helper sorts listings on NBA Top Shot by price instead of serial number. Lower serial numbers are highlighted by specific colors. Custom colors can be changed in the settings (Windows only). Start making better buying decisions in the marketplace by downloading this extension. Donate a moment to the developer: https://www.nbatopshot.com/user/@spencer
확장 프로그램 기본 정보
이름 | Top Shot Helper |
ID | leojoakcmcfpoaojibhkepbglljbjjjp |
공식 URL | https://chromewebstore.google.com/detail/top-shot-helper/leojoakcmcfpoaojibhkepbglljbjjjp |
설명 | Top Shot Helper |
파일 크기 | 22.92 KB |
설치 횟수 | 1,350 |
현재 버전 | 0.0.0.4 |
최근 업데이트 | 2021-03-03 |
출시 날짜 | 2021-02-03 |
평점 | 4.40/5 총 15 개의 평점 |
개발자 | topshothelper |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Top Shot Helper", "version": "0.0.0.4", "description": "Top Shot Helper", "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.nbatopshot.com\/listings\/p2p\/*", "http:\/\/www.nbatopshot.com\/listings\/p2p\/*", "https:\/\/recnepsbackwards.github.io\/*" ], "js": [ "scripts\/content_script.js" ] } ], "permissions": [ "tabs", "activeTab", "storage", "https:\/\/www.nbatopshot.com\/listings\/p2p\/*", "http:\/\/www.nbatopshot.com\/listings\/p2p\/*", "https:\/\/recnepsbackwards.github.io\/*" ] } |