Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
Tab Manager Shortcuts là gì?
Tab Manager Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Daniel Pham, và tính năng chính của nó là "Manage your chrome tabs with keyboard shortcuts.".
Ả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 Tab Manager Shortcuts
Tải xuống các tệp mở rộng Tab Manager 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
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
Mô tả | Manage your chrome tabs with keyboard shortcuts. |
Kích Thước Tệp | 21.21 KB |
Số Lần Cài Đặt | 314 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2016-12-27 |
Ngày Phát Hành | 2016-12-27 |
Đánh Giá | 3.36/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Daniel Pham |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/danhp/tab-manager-chrome |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |