Super Tab Sorter
Super Tab Sorter that allows user-defined tab group order.
ما هو Super Tab Sorter؟
Super Tab Sorter هو إضافة Chrome تم تطويرها بواسطة https://peterwhite.net، والميزة الرئيسية لها هي "Super Tab Sorter that allows user-defined tab group order.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Super Tab Sorter
قم بتنزيل ملفات الامتداد Super Tab Sorter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
"Super Tab Sorter" is a free and open-source Google Chrome extension for people who want user-customizable tab sorting and grouping. This is a more feature-rich version of Simple Tab Sorter, designed to contain feature requests that might conflict with Simple Tab Sorter's design goals of remaining "Simple" and lightweight. In addition to standard URL or title-based sorting, its "killer features" are: 1. Respects Google Chrome's Tab Groups. 2. "Sort By URL" sorts by domain, sub-sorts by host name. 3. "Sort By Custom" is like "Sort By URL", with the ability to simply override the order of tabs manually - demonstrated in https://github.com/pwhite2/super-tab-sorter/blob/master/STS_Custom_Sort_Demo.mp4 4. Optional dedupe while sorting. 5. User configurable sort behavior for handling tabs suspended by extensions derived from The Great Suspender (please review the User Guide under Options for configuration instructions). If you encounter any issues, or have ideas for improvements, submissions at https://github.com/pwhite2/super-tab-sorter/issues and pull requests are greatly appreciated. Thanks! Peter PLEASE READ BEFORE INSTALLING AND SUBMITTING NEGATIVE REVIEWS: 1. Simple Tab Sorter v0.4.0 and later require Chrome version 88 or later. If you're using an older version of Chrome, you can manually install v0.3.3 by following the instructions at https://github.com/pwhite2/simple-tab-sorter#install-as-an-extension-from-source . 2. "Read your browsing history" permission warning during install in versions 0.4.0 and later... Chrome changed the permissions message for "tabs" permissions for manifest v3 extensions. The new release (0.4.0) isn't doing anything with the tabs API that it wasn't doing before - i.e., it doesn't have access to your browser history, just the currently open tab URLs which are required to sort by URL. You can see the requested permissions for this extension at https://github.com/pwhite2/simple-tab-sorter/blob/master/src/manifest.json. The developer documentation for the "tabs" API (https://developer.chrome.com/docs/extensions/reference/api/tabs) states: "The "tabs" permission This permission does not give access to the chrome.tabs namespace. Instead, it grants an extension the ability to call tabs.query() against four sensitive properties on tabs.Tab instances: url, pendingUrl, title, and favIconUrl." As you'll see, there is NO mention of "history" anywhere in the "chrome.tabs" developer documentation. To have access to your browsing history, an extension would have to specify "history" in the manifest.json permissions, which you can verify this doesn't, as documented at https://developer.chrome.com/docs/extensions/reference/api/history. ------------------------------------------------------------------------------------------------------------------ 2024-01-04: Version 0.5.2 released * Fixed sort all windows bug resulting from conversion to manifest v3 2023-12-19: Version 0.5.1 released * Removed "Test" from Settings dialog and removed unused file. 2023-12-18: Version 0.5.0 released * This is the initial release, forked from my work on Simple Tab Sorter 0.4.0 (to be released shortly after this) * Added "Dedupe tabs (in current window)" option and disabled it by default * Sort By URL sorts by root domain name and sub-sorts by host name
معلومات أساسية عن التمديد
الاسم | Super Tab Sorter |
ID | jjhppbooocacaccnhjninhmigbfmpnkh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/super-tab-sorter/jjhppbooocacaccnhjninhmigbfmpnkh |
الوصف | Super Tab Sorter that allows user-defined tab group order. |
حجم الملف | 139 KB |
عدد التثبيتات | 176 |
النسخة الحالية | 0.5.2 |
آخر تحديث | 2024-01-05 |
تاريخ النشر | 2023-12-19 |
تقييم | 2.33/5 مجموع تقييمات 3 |
المطور | https://peterwhite.net |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/pwhite2/super-tab-sorter |
عنوان صفحة المساعدة | https://github.com/pwhite2/super-tab-sorter/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Super Tab Sorter", "description": "Super Tab Sorter that allows user-defined tab group order.", "version": "0.5.2", "manifest_version": 3, "permissions": [ "tabs", "tabGroups", "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Super Tab Sorter", "default_popup": ".\/popup.html", "default_icons": { "128": "img\/128.png", "48": "img\/48.png", "16": "img\/16.png" } }, "options_page": ".\/options.html" } |