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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } |