Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
Vad är Visualized Tab Sorter?
Visualized Tab Sorter är en Chrome-tillägg utvecklad av zwarneke, och dess huvudfunktion är "Visualize different sorting algorithms by sorting your tabs!".
Tilläggsskärmbilder
Ladda ner Visualized Tab Sorter-förlängningens CRX-fil
Ladda ner Visualized Tab Sorter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Visualized Tab Sorter |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
Officiell webbadress | https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb |
Beskrivning | Visualize different sorting algorithms by sorting your tabs! |
Filstorlek | 12.2 KB |
Antal Installationer | 68 |
Aktuell Version | 0.2.0 |
Senast Uppdaterad | 2023-08-25 |
Publiceringsdatum | 2020-12-17 |
Utvecklare | zwarneke |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |