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
Eメール [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"
    ]
}