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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } } |