MRU Tab Toggle

Makes switching tabs manageable even when many are open!

MRU Tab Toggleคืออะไร?

MRU Tab Toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ben.borchard และคุณลักษณะหลักของมันคือ "Makes switching tabs manageable even when many are open!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MRU Tab Toggle

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}