Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

O que é Visualized Tab Sorter?

Visualized Tab Sorter é uma extensão do Chrome desenvolvida por zwarneke, e sua principal característica é "Visualize different sorting algorithms by sorting your tabs!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Visualized Tab Sorter

Baixe arquivos de extensão Visualized Tab Sorter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
URL Oficial https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Descrição Visualize different sorting algorithms by sorting your tabs!
Tamanho do Arquivo 12.2 KB
Contagem de Instalações 68
Versão Atual 0.2.0
Última Atualização 2023-08-25
Data de Publicação 2020-12-17
Desenvolvedor zwarneke
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}