Tab Keys

Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.

ما هو Tab Keys؟

Tab Keys هو إضافة Chrome تم تطويرها بواسطة thekiteeatingtree، والميزة الرئيسية لها هي "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

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

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

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

                        Allows you to set keyboard shortcuts for selecting the next or previous tab.  Also offers the ability to add a shortcut to pin tabs.  

The default shortcuts for next/prev tab are Ctrl+Right/Left.  To edit the shortcuts click on the extension icon and hit 'Manage extensions'.  Scroll to the bottom of the page and click 'Keyboard shortcuts'.  This extensions shortcuts will be editable under the 'Tab Keys' header.                    

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

الاسم Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
الوصف Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
حجم الملف 4.5 KB
عدد التثبيتات 21
النسخة الحالية 1.0
آخر تحديث 2017-07-27
تاريخ النشر 2017-07-27
المطور thekiteeatingtree
نوع الدفع free
موقع الإضافة https://github.com/TheKiteEatingTree/TabKeys
عنوان صفحة المساعدة https://github.com/TheKiteEatingTree/TabKeys/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Keys",
    "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Select the next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Select the previous tab"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pin the current tab"
        }
    }
}