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
官方網址 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
}