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!”。
擴展截圖
下載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 |
ID | hibpbokehdhihkcaenakcpdcecipfdfb |
官方網址 | 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" ] } |