Visualized Tab Sorter
Visualize different sorting algorithms by sorting your tabs!
ما هو Visualized Tab Sorter؟
Visualized Tab Sorter هو إضافة Chrome تم تطويرها بواسطة zwarneke، والميزة الرئيسية لها هي "Visualize different sorting algorithms by sorting your tabs!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Visualized Tab Sorter
قم بتنزيل ملفات الامتداد Visualized Tab Sorter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
البريد الإلكتروني | zwarneke@google.com |
نوع الدفع | 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" ] } |