Tab Organizer

Organizes and Rearranges tabs by URL.

ما هو Tab Organizer؟

Tab Organizer هو إضافة Chrome تم تطويرها بواسطة Devin Soni، والميزة الرئيسية لها هي "Organizes and Rearranges tabs by URL.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tab Organizer

قم بتنزيل ملفات الامتداد Tab Organizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        *** FEATURED ON PRODUCT HUNT AND LIFEHACKER ***

Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order.

Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs.

* * * NEW IN VERSION 1.0: * * *
* Options page to manage settings
* Automatically sort tabs every 5, 30, or 60 minutes.
* Keyboard shortcut "Ctrl + Shift + A" to sort on command.                    

معلومات أساسية عن التمديد

الاسم Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
الوصف Organizes and Rearranges tabs by URL.
حجم الملف 8.1 KB
عدد التثبيتات 6,272
النسخة الحالية 1.0
آخر تحديث 2016-05-12
تاريخ النشر 2016-05-11
تقييم 4.43/5 مجموع تقييمات 37
المطور Devin Soni
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Organizer",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Organizes and Rearranges tabs by URL.",
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js",
            "options.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Activate sorting"
        }
    },
    "options_page": "options.html"
}