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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}