Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
Visualized Tab Sorter là gì?
Visualized Tab Sorter là một tiện ích mở rộng Chrome được phát triển bởi zwarneke, và tính năng chính của nó là "Visualize different sorting algorithms by sorting your tabs!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Visualized Tab Sorter
Tải xuống các tệp mở rộng Visualized Tab Sorter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Visualized Tab Sorter |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
URL Chính Thức | https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb |
Mô tả | Visualize different sorting algorithms by sorting your tabs! |
Kích Thước Tệp | 12.2 KB |
Số Lần Cài Đặt | 68 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2023-08-25 |
Ngày Phát Hành | 2020-12-17 |
Nhà Phát Triển | zwarneke |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |