Most Recent Used Tab Stack

Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.

什麼是Most Recent Used Tab Stack?

Most Recent Used Tab Stack是由brandon開發的Chrome擴展程式,該擴展的主要功能是“Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.”。

擴展截圖

下載Most Recent Used Tab Stack擴展crx文件

下載Most Recent Used Tab Stack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension moves your most recently used (MRU) tab to the front or back. Allowing Ctrl+tab to work in most recently used order. 

This is an update to https://goo.gl/F0pGhZ to support the new api. Also works with pinned tabs.

1.5 - Simpler Code, fix to sometimes send the tab to the back.
1.4 - Fix to support chrome bug while tab.query is broken.
1.3 - Right to left support. 
1.2 - Removed more permissions. Now doesn't need anything additional to function.
1.1 - Working with multiple windows now. Removed some unneeded permissions.                    

擴展基本資訊

名稱 Most Recent Used Tab Stack Most Recent Used Tab Stack
ID kbedhikfgjjlhibaoafccbkeeppnhage
官方網址 https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage
簡介 Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
檔案大小 15.78 KB
安裝次數 252
目前版本 1.5
更新時間 2021-06-04
上架時間 2018-02-07
評分 4.92/5 共 12 次評分
開發者 brandon
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Most Recent Used Tab Stack",
    "version": "1.5",
    "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.",
    "short_name": "MRU Tab Stack",
    "background": {
        "persistant": false,
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Same as Ctrl+Tab but won't sort until you let go."
        }
    }
}