Tab Manager Shortcuts

Manage your chrome tabs with keyboard shortcuts.

Tab Manager Shortcutsとは何ですか?

Tab Manager ShortcutsはDaniel Phamによって開発されたChromeの拡張機能で、その主な機能は「Manage your chrome tabs with keyboard shortcuts.」です。

拡張機能のスクリーンショット

screenshot

Tab Manager Shortcuts拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Reorder and manage the chrome tabs with customizable keyboard shortcuts

As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419).

Source Code:
https://github.com/danhp/tab-manager-chrome                    

拡張機能の基本情報

名前 Tab Manager Shortcuts Tab Manager Shortcuts
ID oofoadncochbkbpebpbndghocapamchi
公式URL https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi
説明 Manage your chrome tabs with keyboard shortcuts.
ファイルサイズ 21.21 KB
インストール数 314
現在のバージョン 2.0.0
最終更新日 2016-12-27
公開日 2016-12-27
評価 3.36/5 合計 11 レビュー
開発者 Daniel Pham
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/danhp/tab-manager-chrome
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Manager Shortcuts",
    "version": "2.0.0",
    "description": "Manage your chrome tabs with keyboard shortcuts.",
    "homepage_url": "https:\/\/phamdaniel.github.io",
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "background": {
        "persisten": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "tab_manager_pin_current": {
            "description": "Pin or unpin current tab."
        },
        "tab_manager_unpin_all": {
            "description": "Unpin all tabs in current window"
        },
        "tab_manager_move_left": {
            "description": "Move selected tab left"
        },
        "tab_manager_move_right": {
            "description": "Move selected tab right"
        },
        "tab_manager_browse_left": {
            "description": "Switch\/browse tab left"
        },
        "tab_manager_browse_right": {
            "description": "Switch\/browse tab right"
        }
    }
}