Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
Tab Mover (Move tabs with keyboard shortcuts)とは何ですか?
Tab Mover (Move tabs with keyboard shortcuts)はDennis Paagmanによって開発されたChromeの拡張機能で、その主な機能は「Move your tabs around with keyboard shortcuts」です。
Tab Mover (Move tabs with keyboard shortcuts)拡張機能のCRXファイルをダウンロード
Tab Mover (Move tabs with keyboard shortcuts)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Move your tabs around with keyboard shortcuts. Installation instructions: Install the extension directly from the Chrome Web Store Scroll to the bottom of your 'Extensions' preferences Click 'Keyboard Shortcuts' at the bottom right Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]
拡張機能の基本情報
名前 | |
ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
公式URL | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
説明 | Move your tabs around with keyboard shortcuts |
ファイルサイズ | 19.11 KB |
インストール数 | 46 |
現在のバージョン | 1.2 |
最終更新日 | 2016-11-25 |
公開日 | 2016-11-25 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | Dennis Paagman |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Mover (Move tabs with keyboard shortcuts)", "short_name": "Tab Mover", "description": "Move your tabs around with keyboard shortcuts", "version": "1.2", "author": "Dennis Paagman", "icons": { "128": "icon-128.png", "64": "icon-64.png" }, "background": { "scripts": [ "tabMover.js" ] }, "permissions": [ "activeTab" ], "commands": { "move-tab-left": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Move current tab to the left" }, "move-tab-right": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Move current tab to the right" } } } |