MRU Tab Toggle

Makes switching tabs manageable even when many are open!

什麼是MRU Tab Toggle?

MRU Tab Toggle是由ben.borchard開發的Chrome擴展程式,該擴展的主要功能是“Makes switching tabs manageable even when many are open!”。

擴展截圖

screenshot
screenshot

下載MRU Tab Toggle擴展crx文件

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

擴展使用說明

                        This is a fairly simple extension that allows you to navigate through your tabs in the same way you navigate through your windows when you use the Alt-Tab functionality.

The shortcuts need to be set using the keyboard shortcuts link on the chrome extension dashboard and can be changed depending on your preference.

This is helpful if you would like to have many tabs open but be able to switch between only a couple that you happen to be using quickly and easily.                    

擴展基本資訊

名稱 MRU Tab Toggle MRU Tab Toggle
ID ffnhjdgocgbpgnhkeamobligjppaacho
官方網址 https://chromewebstore.google.com/detail/mru-tab-toggle/ffnhjdgocgbpgnhkeamobligjppaacho
簡介 Makes switching tabs manageable even when many are open!
檔案大小 103 KB
安裝次數 10
目前版本 1.0
更新時間 2015-05-28
上架時間 2015-05-28
評分 1.67/5 共 3 次評分
開發者 ben.borchard
付費類型 free
擴展官網 https://github.com/ben-borchard/ChromeExtensions/tree/master/MostRecentlyUsedTabs/src
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MRU Tab Toggle",
    "description": "Makes switching tabs manageable even when many are open!",
    "version": "1.0",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/jquery-1.10.2.js",
                "js\/content.js"
            ]
        }
    ],
    "commands": {
        "Toggle-Tab-Forward": {
            "suggested_key": {
                "default": "Ctrl+A",
                "mac": "MacCtrl+Q"
            },
            "description": "Toggle Tab Forward"
        },
        "Toggle-Tab-Backward": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+Q"
            },
            "description": "Toggle Tab Backward"
        }
    },
    "icons": {
        "48": "images\/icon48.jpg",
        "128": "images\/icon128.jpg"
    },
    "web_accessible_resources": [
        "images\/chrome.png",
        "images\/newTab.PNG",
        "images\/defaultIcon.png"
    ],
    "permissions": [
        "tabs"
    ]
}