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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Top Shot Broker, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Top Shot Broker Sort

Λήψη αρχείων επέκτασης Top Shot Broker Sort σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}