Next Tab

Allows users to set key binding to change active tab.

Next Tabคืออะไร?

Next Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hwallis และคุณลักษณะหลักของมันคือ "Allows users to set key binding to change active tab."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Next Tab

ดาวน์โหลดไฟล์ส่วนขยาย Next Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Next Tab is a simple extension that allows you to change the keyboard shortcuts to move between tabs from ctrl+tab and ctrl+shift+tab (eww) to whatever you like!

----------------------------------------------------------------

HOW TO USE THIS EXTENSION

1. Click the "add to chrome" button at the top of this popup
2. You'll be asked if you want to install the extension and chrome will warn you that the extension can see your browsing history. Don't worry! That's just because it's always active no matter which page you're on, it doesn't read or record your history.
3. Once you've installed open a new tab and go to "chrome://extensions"
4. Scroll to the bottom and click "Keyboard Shortcuts"
5. Find this extension
6. Click in the boxes to set your own custom keybindings!

----------------------------------------------------------------

PROBLEMS

Hope you enjoy this extension and please feel free to report any problems or request any updates either:
  -  In the Reviews section
  -  By emailing me directly at [email protected]

----------------------------------------------------------------

CHANGE LOG

V1.0 12/08/17 - First version of Next Tab published

----------------------------------------------------------------

Take care and peace :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Next Tab Next Tab
ID bmjfhekkjoageinhillpgiclcmnjbfbc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/next-tab/bmjfhekkjoageinhillpgiclcmnjbfbc
คำอธิบาย Allows users to set key binding to change active tab.
ขนาดไฟล์ 12.37 KB
จำนวนการติดตั้ง 88
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-08-12
วันที่เผยแพร่ 2017-08-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา hwallis
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Next Tab",
    "version": "1.0",
    "description": "Allows users to set key binding to change active tab.",
    "author": "Henry Wallis",
    "manifest_version": 2,
    "short_name": "Next Tab",
    "background": {
        "scripts": [
            "move.js"
        ],
        "persistent": false
    },
    "commands": {
        "previous-tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "windows": "Ctrl+Left",
                "mac": "MacCtrl+Left"
            },
            "description": "Move to the tab to the left"
        },
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right",
                "windows": "Ctrl+Right",
                "mac": "MacCtrl+Right"
            },
            "description": "Move to the tab to the right"
        }
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "icons": {
        "16": "favicon16.png",
        "24": "favicon24.png",
        "32": "favicon32.png",
        "64": "favicon64.png",
        "128": "favicon128.png"
    }
}