Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
Switch tabs shortcuts là gì?
Switch tabs shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Yutaro Yoshii, và tính năng chính của nó là "Adds custom shortcuts for switching tabs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Switch tabs shortcuts
Tải xuống các tệp mở rộng Switch tabs shortcuts 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
This extension adds custom shortcuts for switching tabs. After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts The default key bindings are as follows: Jump to the previous open tab mac: "Command+Shift+Left" other platforms: "Ctrl+Shift+Left" Jump to the next open tab mac: "Command+Shift+Right" other platforms: "Ctrl+Shift+Right" Jump to the last open tab mac: "Command+Shift+Up" other platforms: "Ctrl+Shift+Up" Jump to the first open tab mac: "Command+Shift+Down" other platforms: "Ctrl+Shift+Down"
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
URL Chính Thức | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
Mô tả | Adds custom shortcuts for switching tabs. |
Kích Thước Tệp | 8.29 KB |
Số Lần Cài Đặt | 255 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-10-09 |
Ngày Phát Hành | 2020-03-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Yutaro Yoshii |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://developer.chrome.com/docs/webstore/program-policies/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch tabs shortcuts", "short_name": "Switch tabs", "version": "1.0", "description": "Adds custom shortcuts for switching tabs.", "author": "Yutaro Yoshii", "manifest_version": 2, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "commands": { "tab_left": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "Jump to the previous open tab" }, "tab_right": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Jump to the next open tab" }, "tab_first": { "suggested_key": { "default": "Ctrl+Shift+Up", "mac": "Command+Shift+Up" }, "description": "Jump to the last open tab" }, "tab_last": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Jump to the first open tab" } } } |