Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

What is Visualized Tab Sorter?

Visualized Tab Sorter is a Chrome extension developed by zwarneke, and its main feature is "Visualize different sorting algorithms by sorting your tabs!".

Extension Screenshots

screenshot

Download Visualized Tab Sorter Extension CRX File

Download Visualized Tab Sorter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
Official URL https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
Description Visualize different sorting algorithms by sorting your tabs!
File Size 12.2 KB
Installation Count 68
Current Version 0.2.0
Last Updated 2023-08-25
Publish Date 2020-12-17
Developer zwarneke
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}