ToggleTab

Toggles between the last two active tabs using a global hotkey.

ToggleTab là gì?

ToggleTab là một tiện ích mở rộng Chrome được phát triển bởi zamtools, và tính năng chính của nó là "Toggles between the last two active tabs using a global hotkey.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng ToggleTab 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

                        ToggleTab lets you toggle back and forth between the two most recently selected tabs using a global hotkey. The hotkey is configurable and will work even when chrome doesn't have focus. This is ideal for gamers, researchers, developers and anyone else who needs to switch tabs in their browser without leaving the application they're working in.

HOW IT WORKS

ToggleTab remembers the order in which you selected, opened and deleted tabs using its "Tab History". If you're toggling between two tabs and decide to close one of them, the next most recent tab in the tab history will begin toggling instead.

By default, the global hotkey to toggle is Ctrl+Shift+1 on Windows and Cmd+Shift+1 on OSX. This should be comfortable to press with just your left hand. See the "Configuration" section below to learn how to configure the hotkey.

The tab history can be locked allowing you to temporarily check other tabs without interfering with the order of your tab history or which tabs will toggle. Locking can be easily enabled and disabled by clicking the ToggleTab icon in the Chrome toolbar.

CONFIGURATION

The ToggleTab options can be reached by right-clicking the ToggleTab icon in the Chrome toolbar then clicking "Options" from the menu.

From the Options page you can view the entire tab history. Individual tab history items can be removed by checking them and clicking "Delete Selected" at the bottom of the list. Deleting items from the tab history will NOT close their respective tabs. However, closing tabs will remove them from the tab history.

The global hotkey can be configured by clicking the "Configure Hotkeys" button on the Options page.

VERSIONS

1.0.1 - Improved persistence between browser sessions
1.0.0 - Initial version with tab history, locking and a global hotkey.                    

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

Tên ToggleTab ToggleTab
ID iblgdmlpmokbijhiebnffnffablkkedk
URL Chính Thức https://chromewebstore.google.com/detail/toggletab/iblgdmlpmokbijhiebnffnffablkkedk
Mô tả Toggles between the last two active tabs using a global hotkey.
Kích Thước Tệp 85.31 KB
Số Lần Cài Đặt 383
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 3.84/5 Tổng số 19 Đánh Giá
Nhà Phát Triển zamtools
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ToggleTab",
    "description": "Toggles between the last two active tabs using a global hotkey.",
    "version": "1.0.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon32.png"
    },
    "permissions": [
        "tabs",
        "commands"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "scripts\/eventpage.js"
        ],
        "persistent": true
    },
    "commands": {
        "toggle-feature-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "windows": "Ctrl+Shift+1",
                "mac": "Command+Shift+1",
                "chromeos": "Ctrl+Shift+1",
                "linux": "Ctrl+Shift+1"
            },
            "description": "Toggle between last two active tabs",
            "global": true
        }
    }
}