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

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

확장 프로그램 사용 설명서

                        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
공식 URL 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."
        }
    }
}