Previous Tab

Switch back to the previously active tab using the keyboard.

什么是Previous Tab?

Previous Tab是由previoustab.com开发的Chrome扩展程序,该扩展的主要功能是“Switch back to the previously active tab using the keyboard.”。

扩展截图

screenshot
screenshot

下载Previous Tab扩展crx文件

下载Previous Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Previous Tab Previous Tab
ID bjaniflnlhhofabpoamhnobeonjcjjpl
官方URL https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl
简介 Switch back to the previously active tab using the keyboard.
文件大小 468 KB
安装次数 10,000
当前版本 1.0.2
更新时间 2022-11-12
上架时间 2020-02-28
评分 4.84/5 共97次评分
开发者 previoustab.com
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}