Top Shot Toolkit
Simple toolkit to help inform decisions when buying Moments.
Top Shot Toolkit란 무엇입니까?
Top Shot Toolkit은(는) edaniszewskiextdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple toolkit to help inform decisions when buying Moments."입니다.
확장 프로그램 스크린샷
Top Shot Toolkit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This toolkit aims to provide additional utility and improvements to enable you to make more informed decisions on whether a Moment is worth buying. Any tooling, charting, and utility otherwise provided by this extension does not constitute advice on whether you should buy or sell a Moment; it aims only to give you more context to make your own decision. Features: • Uses the same design and styling as the top shot website • Disable autoplaying videos on "packs" page for easier readability • Visually plot a Moment's Ask prices, recent sales, and top 3 sales as a visual aid in decision making • Sort Moments by serial number or ask price • "Bookmark" other users for easier access to friends' profiles Like the extension? Consider donating a Moment to the author: @who_is_lebron_jame
확장 프로그램 기본 정보
이름 | Top Shot Toolkit |
ID | nhiijiajgkhdnggjnamiijohbbelagjj |
공식 URL | https://chromewebstore.google.com/detail/top-shot-toolkit/nhiijiajgkhdnggjnamiijohbbelagjj |
설명 | Simple toolkit to help inform decisions when buying Moments. |
파일 크기 | 199 KB |
설치 횟수 | 354 |
현재 버전 | 0.3.1 |
최근 업데이트 | 2021-03-17 |
출시 날짜 | 2021-02-27 |
평점 | 4.10/5 총 10 개의 평점 |
개발자 | edaniszewskiextdev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/edaniszewski/topshot-toolkit |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Top Shot Toolkit", "version": "0.3.1", "description": "Simple toolkit to help inform decisions when buying Moments.", "manifest_version": 2, "icons": { "16": "src\/icons\/icon_16.png", "24": "src\/icons\/icon_24.png", "32": "src\/icons\/icon_32.png", "48": "src\/icons\/icon_48.png", "64": "src\/icons\/icon_64.png", "128": "src\/icons\/icon_128.png" }, "browser_action": { "default_popup": "src\/html\/popup.html", "default_title": "Top Shot Toolkit", "default_icon": { "128": "src\/icons\/icon_128.png" } }, "content_scripts": [ { "js": [ "src\/js\/vendored\/chart-2.9.4.min.js", "src\/js\/common.js", "src\/js\/nav.js", "src\/js\/user.js", "src\/js\/packs.js", "src\/js\/moments.js", "src\/js\/dispatch.js" ], "matches": [ "*:\/\/*.nbatopshot.com\/*" ] } ], "background": { "scripts": [ "src\/js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "src\/img\/following.svg", "src\/img\/plus-sign-hollow.svg", "src\/img\/minus-sign-hollow.svg" ], "permissions": [ "webNavigation", "storage" ] } |