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ファイルをダウンロード

Move Tab Left拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    }
}