Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

¿Qué es Visualized Tab Sorter?

Visualized Tab Sorter es una extensión de Chrome desarrollada por zwarneke, y su función principal es "Visualize different sorting algorithms by sorting your tabs!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Visualized Tab Sorter

Descarga archivos de extensión Visualized Tab Sorter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
URL Oficial https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Descripción Visualize different sorting algorithms by sorting your tabs!
Tamaño del Archivo 12.2 KB
Cantidad de Instalaciones 68
Versión Actual 0.2.0
Última Actualización 2023-08-25
Fecha de Publicación 2020-12-17
Desarrollador zwarneke
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}