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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension made by Top Shot Broker that organizes a NBA Top Shot Moment's price listings by lowest ask or serial number."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Top Shot Broker Sort एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |