Top Shot Broker Sort

An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number.

Top Shot Broker Sort란 무엇입니까?

Top Shot Broker Sort은(는) Top Shot Broker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Top Shot Broker Sort 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A simple tool that gives a user the ability to sort a select dropdown by lowest asking price or by ascending serial number on the NBA Top Shot site. The extension adds some buttons to the page via jQuery that the user can see and click. The buttons are added by clicking the Chrome extension icon while on the appropriate page and are only added on the currently active tab. When clicked, the data on the page will be organized either by ascending serial number or descending price. Notable serial numbers (repeating numbers, some "pleasing to the eye" whole numbers) will also be highlighted with a brighter text color. These buttons only appear on exactly one single page on the NBA TopShot website and do not impact any existing functionality. It simply serves as an organization tool.                    

확장 프로그램 기본 정보

이름 Top Shot Broker Sort Top Shot Broker Sort
ID dkbaackaeegnadangmmkddfgmfbicdkn
공식 URL https://chromewebstore.google.com/detail/top-shot-broker-sort/dkbaackaeegnadangmmkddfgmfbicdkn
설명 An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number.
파일 크기 47.71 KB
설치 횟수 233
현재 버전 0.2
최근 업데이트 2021-03-07
출시 날짜 2021-02-22
평점 4.50/5 총 2 개의 평점
개발자 Top Shot Broker
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/TopShotBroker
도움말 페이지 URL https://discord.gg/7dhbE9vXh3
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Top Shot Broker Sort",
    "version": "0.2",
    "description": "An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nbatopshot.com\/listings\/p2p\/*",
                "https:\/\/nbatopshot.com\/listings\/p2p\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js"
            ],
            "css": [
                "sort.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Append Sort Buttons",
        "default_icon": "icon.png"
    }
}