Visualized Tab Sorter

Visualize different sorting algorithms by sorting your tabs!

什么是Visualized Tab Sorter?

Visualized Tab Sorter是由zwarneke开发的Chrome扩展程序,该扩展的主要功能是“Visualize different sorting algorithms by sorting your tabs!”。

扩展截图

screenshot

下载Visualized Tab Sorter扩展crx文件

下载Visualized Tab Sorter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Visualized Tab Sorter Visualized Tab Sorter
ID hibpbokehdhihkcaenakcpdcecipfdfb
官方URL https://chromewebstore.google.com/detail/visualized-tab-sorter/hibpbokehdhihkcaenakcpdcecipfdfb
简介 Visualize different sorting algorithms by sorting your tabs!
文件大小 12.2 KB
安装次数 68
当前版本 0.2.0
更新时间 2023-08-25
上架时间 2020-12-17
开发者 zwarneke
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}