Switch Tab Shortcut

Customize chrome shortcut to switch tabs

Switch Tab Shortcut là gì?

Switch Tab Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Stanley Guevara, và tính năng chính của nó là "Customize chrome shortcut to switch tabs".

Tải xuống tệp CRX của tiện ích mở rộng Switch Tab Shortcut

Tải xuống các tệp mở rộng Switch Tab Shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Simple extension for switching to next/previous tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Switch Tab Shortcut Switch Tab Shortcut
ID pfeobfgjcmcpgkodpodibnggeanmoddk
URL Chính Thức https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk
Mô tả Customize chrome shortcut to switch tabs
Kích Thước Tệp 3.37 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-10-16
Ngày Phát Hành 2016-10-16
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Stanley Guevara
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stanleyguevara/chrome-switch-tab-shortcut
URL Trang Trợ Giúp https://github.com/stanleyguevara/chrome-switch-tab-shortcut
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to switch tabs",
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right",
                "mac": "Command+Right"
            },
            "description": "Next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Prev tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}