Tab and Tab Group Shortcuts
Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Tab and Tab Group Shortcutsとは何ですか?
Tab and Tab Group Shortcutsはbmalehornによって開発されたChromeの拡張機能で、その主な機能は「Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.」です。
拡張機能のスクリーンショット
Tab and Tab Group Shortcuts拡張機能のCRXファイルをダウンロード
Tab and Tab Group Shortcuts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds multiple shortcuts to manage tabs:
Opens a tab in the same group as the current tab.
Mac: Command+Shift+Y
Windows: Ctrl+Shift+Y
Swap the tab to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.
Swap the tab to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.
Move focus to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.
Move focus to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut. 拡張機能の基本情報
| 名前 | |
| ID | nnbnphmhdbcgnekonlgniafbpcpapkep |
| 公式URL | https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep |
| 説明 | Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus. |
| ファイルサイズ | 6.83 KB |
| インストール数 | 216 |
| 現在のバージョン | 1.0.6 |
| 最終更新日 | 2023-10-08 |
| 公開日 | 2022-07-19 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | bmalehorn |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/bmalehorn/new-tab-in-tab-group |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab and Tab Group Shortcuts",
"description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.",
"version": "1.0.6",
"manifest_version": 3,
"permissions": [
"tabs",
"tabGroups"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"swap-right": {
"description": "Swap tab to the right"
},
"swap-left": {
"description": "Swap tab to the left"
},
"focus-left-into-group": {
"description": "Move focus left into tab group"
},
"focus-right-into-group": {
"description": "Move focus right into tab group"
},
"new-tab-in-group": {
"description": "Open New Tab in Group",
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
}
}
},
"icons": {
"128": "icon.png"
}
} | |