Tab and Tab Group Shortcuts

Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.

ما هو Tab and Tab Group Shortcuts؟

Tab and Tab Group Shortcuts هو إضافة Chrome تم تطويرها بواسطة bmalehorn، والميزة الرئيسية لها هي "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tab and Tab Group Shortcuts

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

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

                        Adds multiple shortcuts to manage tabs:


Opens a tab in the same group as the current tab.
Mac: Command+Shift+Y
Windows: Ctrl+Shift+Y

Swap the tab to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Swap the tab to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.                    

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

الاسم Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
الوصف Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
حجم الملف 6.83 KB
عدد التثبيتات 216
النسخة الحالية 1.0.6
آخر تحديث 2023-10-08
تاريخ النشر 2022-07-19
تقييم 5.00/5 مجموع تقييمات 4
المطور bmalehorn
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/bmalehorn/new-tab-in-tab-group
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab and Tab Group Shortcuts",
    "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.",
    "version": "1.0.6",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "tabGroups"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "swap-right": {
            "description": "Swap tab to the right"
        },
        "swap-left": {
            "description": "Swap tab to the left"
        },
        "focus-left-into-group": {
            "description": "Move focus left into tab group"
        },
        "focus-right-into-group": {
            "description": "Move focus right into tab group"
        },
        "new-tab-in-group": {
            "description": "Open New Tab in Group",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    },
    "icons": {
        "128": "icon.png"
    }
}