Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

Wat is Visualized Tab Sorter?

Visualized Tab Sorter is een Chrome-extensie ontwikkeld door zwarneke, en de belangrijkste functie is "Visualize different sorting algorithms by sorting your tabs!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Visualized Tab Sorter

Download Visualized Tab Sorter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
Officiële URL https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Beschrijving Visualize different sorting algorithms by sorting your tabs!
Bestandsgrootte 12.2 KB
Aantal Installaties 68
Huidige Versie 0.2.0
Laatst Bijgewerkt 2023-08-25
Publicatiedatum 2020-12-17
Ontwikkelaar zwarneke
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}