New Tab in Group

Opens a new tab in the current group via keyboard shortcut

ما هو New Tab in Group؟

New Tab in Group هو إضافة Chrome تم تطويرها بواسطة Toby Wolff-Maritz، والميزة الرئيسية لها هي "Opens a new tab in the current group via keyboard shortcut".

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

screenshot

تحميل ملف CRX للإضافة New Tab in Group

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

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

                        A simple extension that opens a new tab in the current tab group using a shortcut.

Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J                    

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

الاسم New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
عنوان URL الرسمي https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
الوصف Opens a new tab in the current group via keyboard shortcut
حجم الملف 9.3 KB
عدد التثبيتات 63
النسخة الحالية 0.0.1
آخر تحديث 2022-07-25
تاريخ النشر 2022-07-23
تقييم 5.00/5 مجموع تقييمات 2
المطور Toby Wolff-Maritz
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/tmaritz/chrome-extension-new-tab-in-group
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab in Group",
    "version": "0.0.1",
    "description": "Opens a new tab in the current group via keyboard shortcut",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "icons": {
        "16": "assets\/layer-plus16.png",
        "32": "assets\/layer-plus32.png",
        "64": "assets\/layer-plus64.png",
        "128": "assets\/layer-plus128.png"
    }
}