Recent Tabs

Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!

什么是Recent Tabs?

Recent Tabs是由https://jasonsavard.com开发的Chrome扩展程序,该扩展的主要功能是“Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Recent Tabs扩展crx文件

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

扩展使用说明

                        Just like using Alt+Tab for Windows except now for your browser tabs. Use Ctrl+Tab or Ctrl+Q or Ctrl+`(~) or assign your own shortcut key for swapping back and forth between your last viewed tabs.                    

扩展基本信息

名称 Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
官方URL https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
简介 Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
文件大小 29.33 KB
安装次数 26,175
当前版本 3.4
更新时间 2023-09-07
上架时间 2018-02-21
评分 3.50/5 共331次评分
开发者 https://jasonsavard.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://jasonsavard.com
帮助页面URL https://jasonsavard.com/wiki/Recent_Tabs
隐私政策页面URL https://jasonsavard.com/wiki/Permissions_and_privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recent Tabs",
    "version": "3.4",
    "description": "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "alarms"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "toggleTabs": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Tab"
            },
            "description": "Toggle between the last 2 recent tabs"
        }
    },
    "manifest_version": 3
}