Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
Co to jest Visualized Tab Sorter?
Visualized Tab Sorter to rozszerzenie Chrome opracowane przez zwarneke, a jego główną funkcją jest „Visualize different sorting algorithms by sorting your tabs!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Visualized Tab Sorter
Pobierz pliki rozszerzeń Visualized Tab Sorter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Visualized Tab Sorter |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
Oficjalny URL | https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb |
Opis | Visualize different sorting algorithms by sorting your tabs! |
Rozmiar pliku | 12.2 KB |
Liczba instalacji | 68 |
Aktualna Wersja | 0.2.0 |
Ostatnia Aktualizacja | 2023-08-25 |
Data Publikacji | 2020-12-17 |
Deweloper | zwarneke |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |