Switch Tab Shortcut
Customize chrome shortcut to switch tabs
Switch Tab Shortcutとは何ですか?
Switch Tab ShortcutはStanley Guevaraによって開発されたChromeの拡張機能で、その主な機能は「Customize chrome shortcut to switch tabs」です。
Switch Tab Shortcut拡張機能のCRXファイルをダウンロード
Switch Tab Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension for switching to next/previous tab.
Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys. 拡張機能の基本情報
| 名前 | |
| ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
| 公式URL | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
| 説明 | Customize chrome shortcut to switch tabs |
| ファイルサイズ | 3.37 KB |
| インストール数 | 27 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2016-10-16 |
| 公開日 | 2016-10-16 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Stanley Guevara |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
| ヘルプページのURL | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Switch Tab Shortcut",
"permissions": [
"tabs"
],
"version": "1.0",
"description": "Customize chrome shortcut to switch tabs",
"commands": {
"next-tab": {
"suggested_key": {
"default": "Ctrl+Right",
"mac": "Command+Right"
},
"description": "Next tab"
},
"prev-tab": {
"suggested_key": {
"default": "Ctrl+Left",
"mac": "Command+Left"
},
"description": "Prev tab"
}
},
"background": {
"scripts": [
"main.js"
],
"persistent": false
}
} | |