Move Tab Left

This extension allows you to put the current tab at the beggining of the tab bar.

Move Tab Left란 무엇입니까?

Move Tab Left은(는) mp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to put the current tab at the beggining of the tab bar."입니다.

확장 프로그램 스크린샷

screenshot

Move Tab Left 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Very often you need to move the current tab to the beginning of the tab bar, to the left.

This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut.

By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom).

Update V2:
- Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".                    

확장 프로그램 기본 정보

이름 Move Tab Left Move Tab Left
ID flgjflnifhabbdliblomhkhoplfhheie
공식 URL https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie
설명 This extension allows you to put the current tab at the beggining of the tab bar.
파일 크기 7.64 KB
설치 횟수 207
현재 버전 2.1
최근 업데이트 2016-08-28
출시 날짜 2016-08-28
평점 4.00/5 총 4 개의 평점
개발자 mp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://brostack.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Tab Left",
    "description": "This extension allows you to put the current tab at the beggining of the tab bar.",
    "version": "2.1",
    "browser_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_title": "Move Tab Left"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "move_tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Put tab at the beginning"
        }
    }
}