Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
Visualized Tab Sorterคืออะไร?
Visualized Tab Sorter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zwarneke และคุณลักษณะหลักของมันคือ "Visualize different sorting algorithms by sorting your tabs!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visualized Tab Sorter
ดาวน์โหลดไฟล์ส่วนขยาย Visualized Tab Sorter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension supports sorting tabs using one of six different algorithms: * Insertion sort * Selection sort * Bubble sort * Merge sort * Heap sort * Quick sort The sorting can be done by tab title or URL, and the sorting speed can be adjusted as desired. Additionally, this extension allows you to shuffle, reverse, and even spawn more tabs if you're just looking to explore various sorting algorithms.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Visualized Tab Sorter |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb |
คำอธิบาย | Visualize different sorting algorithms by sorting your tabs! |
ขนาดไฟล์ | 12.2 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2023-08-25 |
วันที่เผยแพร่ | 2020-12-17 |
ผู้พัฒนา | zwarneke |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Visualized Tab Sorter", "version": "0.2.0", "description": "Visualize different sorting algorithms by sorting your tabs!", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_icon": { "128": "images\/vtsIcon128.png" } }, "background": { "service_worker": "sortingAlgorithms.js" }, "icons": { "128": "images\/vtsIcon128.png" }, "permissions": [ "storage", "tabs" ] } |