Previous Tab
Switch back to the previously active tab using the keyboard.
Previous Tab là gì?
Previous Tab là một tiện ích mở rộng Chrome được phát triển bởi previoustab.com, và tính năng chính của nó là "Switch back to the previously active tab using the keyboard.".
Ả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 Previous Tab
Tải xuống các tệp mở rộng Previous Tab 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
Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon. You can change the keyboard shortcut by visiting chrome://extensions/shortcuts . Previous Tab does not require any permissions to install and use. Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts. The supported keys are Alt, Ctrl, Cmd along with: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop). Donations are appreciated at donate.previoustab.com
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Previous Tab |
ID | bjaniflnlhhofabpoamhnobeonjcjjpl |
URL Chính Thức | https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl |
Mô tả | Switch back to the previously active tab using the keyboard. |
Kích Thước Tệp | 468 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2022-11-12 |
Ngày Phát Hành | 2020-02-28 |
Đánh Giá | 4.84/5 Tổng số 97 Đánh Giá |
Nhà Phát Triển | previoustab.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Previous Tab", "description": "Switch back to the previously active tab using the keyboard.", "version": "1.0.2", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "switch-to-previously-active-tab": { "description": "Switch back to the previously active tab", "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Q" } } }, "browser_action": { "default_icon": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |