Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

Was ist Visualized Tab Sorter?

Visualized Tab Sorter ist eine Chrome-Erweiterung, die von zwarneke entwickelt wurde, und ihr Hauptmerkmal ist "Visualize different sorting algorithms by sorting your tabs!".

Erweiterungsscreenshots

screenshot

Visualized Tab Sorter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Visualized Tab Sorter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
Offizielle URL https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Beschreibung Visualize different sorting algorithms by sorting your tabs!
Dateigröße 12.2 KB
Installationsanzahl 68
Aktuelle Version 0.2.0
Letztes Update 2023-08-25
Veröffentlichungsdatum 2020-12-17
Entwickler zwarneke
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}