Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
Apa itu Visualized Tab Sorter?
Visualized Tab Sorter adalah ekstensi Chrome yang dikembangkan oleh zwarneke, dan fitur utamanya adalah "Visualize different sorting algorithms by sorting your tabs!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Visualized Tab Sorter
Unduh file ekstensi Visualized Tab Sorter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Visualized Tab Sorter |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
URL Resmi | https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb |
Deskripsi | Visualize different sorting algorithms by sorting your tabs! |
Ukuran File | 12.2 KB |
Jumlah Instalasi | 68 |
Versi Saat Ini | 0.2.0 |
Terakhir Diperbarui | 2023-08-25 |
Tanggal Publikasi | 2020-12-17 |
Pengembang | zwarneke |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |