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.

O que é Top Shot Broker Sort?

Top Shot Broker Sort é uma extensão do Chrome desenvolvida por Top Shot Broker, e sua principal característica é "An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Top Shot Broker Sort

Baixe arquivos de extensão Top Shot Broker Sort no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Top Shot Broker Sort Top Shot Broker Sort
ID dkbaackaeegnadangmmkddfgmfbicdkn
URL Oficial https://chromewebstore.google.com/detail/top-shot-broker-sort/dkbaackaeegnadangmmkddfgmfbicdkn
Descrição An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number.
Tamanho do Arquivo 47.71 KB
Contagem de Instalações 233
Versão Atual 0.2
Última Atualização 2021-03-07
Data de Publicação 2021-02-22
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor Top Shot Broker
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://twitter.com/TopShotBroker
URL da Página de Ajuda https://discord.gg/7dhbE9vXh3
Idiomas Suportados 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"
    }
}