Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

Co je Visualized Tab Sorter?

Visualized Tab Sorter je rozšíření Chrome vyvinuté zwarneke, a jeho hlavní funkcí je „Visualize different sorting algorithms by sorting your tabs!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Visualized Tab Sorter

Stáhněte si soubory rozšíření Visualized Tab Sorter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
Oficiální URL https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Popis Visualize different sorting algorithms by sorting your tabs!
Velikost souboru 12.2 KB
Počet instalací 68
Aktuální Verze 0.2.0
Poslední Aktualizace 2023-08-25
Datum Vydání 2020-12-17
Vývojář zwarneke
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}