Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

Cos'è Visualized Tab Sorter?

Visualized Tab Sorter è un'estensione di Chrome sviluppata da zwarneke, e la sua funzione principale è "Visualize different sorting algorithms by sorting your tabs!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Visualized Tab Sorter

Scarica i file di estensione Visualized Tab Sorter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
URL Ufficiale https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Descrizione Visualize different sorting algorithms by sorting your tabs!
Dimensione del File 12.2 KB
Conteggio Installazioni 68
Versione Corrente 0.2.0
Ultimo Aggiornamento 2023-08-25
Data di Pubblicazione 2020-12-17
Sviluppatore zwarneke
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}