Categorize Tabs
Group Tabs by domain
ما هو Categorize Tabs؟
Categorize Tabs هو إضافة Chrome تم تطويرها بواسطة yibingshi، والميزة الرئيسية لها هي "Group Tabs by domain".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Categorize Tabs
قم بتنزيل ملفات الامتداد Categorize Tabs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension to categorize opened tabs by domain name for quick access. Also, you can quickly copy tab link to send to someone, pin/bookmark/close tabs, and move tabs that have same domain name to a new window. Options for access all opened windows, search bar and drag & drop features are coming soon. If you have any suggestions or concerns, feel free to send me an email. * Credit to Kelig Le Luron from the Noun Project & Freepik from Flaticon for the icons
معلومات أساسية عن التمديد
الاسم | Categorize Tabs |
ID | oefogamggbofaeonfmkigobeflejjgei |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei |
الوصف | Group Tabs by domain |
حجم الملف | 110 KB |
عدد التثبيتات | 53 |
النسخة الحالية | 0.3 |
آخر تحديث | 2019-01-03 |
تاريخ النشر | 2019-01-03 |
تقييم | 4.00/5 مجموع تقييمات 2 |
المطور | yibingshi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/NathanShi/group-tabs |
عنوان صفحة المساعدة | https://github.com/NathanShi/group-tabs/pulls |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Categorize Tabs", "version": "0.3", "description": "Group Tabs by domain", "permissions": [ "tabs", "activeTab", "bookmarks", "clipboardWrite" ], "background": { "scripts": [ ".\/scripts\/background.js" ], "persistent": false }, "manifest_version": 2, "browser_action": { "default_popup": ".\/public\/popup.html", "default_icon": { "16": "images\/launch_16.png", "32": "images\/launch_32.png", "48": "images\/launch_48.png", "128": "images\/launch_128.png" }, "persistent": false }, "icons": { "16": "images\/launch_16.png", "32": "images\/launch_32.png", "48": "images\/launch_48.png", "128": "images\/launch_128.png" } } |