Alt Tab Shortcuts
Speeds up tab management with simple shortcuts
Alt Tab Shortcutsとは何ですか?
Alt Tab Shortcutsはiamogbzによって開発されたChromeの拡張機能で、その主な機能は「Speeds up tab management with simple shortcuts」です。
拡張機能のスクリーンショット
Alt Tab Shortcuts拡張機能のCRXファイルをダウンロード
Alt Tab Shortcuts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension provides shortcuts for moving tabs between already open chrome windows. 1. Alt+Shift+Right - Move tabs to the next/new window 2. Alt+Shift+Left - Move tabs to the previous window 3. Alt+Shift+Up - Pop tabs into new window 4. Alt+Shift+Down - Pop tabs back into last window / Undo last move action Stuck performing the following actions when switching or moving tabs between windows? 1. Select and drag out the tabs to a new window 2. Verify the desired destination window is visible below 3. Select and drags tabs to the destination window That's frustrating and cumbersome especially when you prefer running your browser maximised. This extension aims to solve that, view the options page to view the shortcuts. For the ultimate chrome tab controls, combine with • Reorder Tabs Shortcuts - https://chrome.google.com/webstore/detail/keyboard-shortcuts-to-reo/moigagbiaanpboaflikhdhgdfiifdodd?hl=en • Tab to Window/Popup - https://chrome.google.com/webstore/detail/tab-to-windowpopup-keyboa/adbkphmimfcaeonicpmamfddbbnphikh
拡張機能の基本情報
名前 | Alt Tab Shortcuts |
ID | ebdcpdepkbefmgfdkdplcmhfkddagfon |
公式URL | https://chromewebstore.google.com/detail/alt-tab-shortcuts/ebdcpdepkbefmgfdkdplcmhfkddagfon |
説明 | Speeds up tab management with simple shortcuts |
ファイルサイズ | 288 KB |
インストール数 | 144 |
現在のバージョン | 1.2.4 |
最終更新日 | 2021-04-28 |
公開日 | 2019-07-06 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | iamogbz |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://ogbizi.com/chrome-alt-tabs/ |
ヘルプページのURL | https://github.com/iamogbz/chrome-alt-tabs/issues |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Alt Tab Shortcuts", "version": "1.2.4", "description": "Speeds up tab management with simple shortcuts", "icons": { "16": "icon.16.png", "32": "icon.32.png", "48": "icon.48.png", "128": "icon.128.png" }, "background": { "scripts": [ "background.js" ] }, "commands": { "tabs-move-out": { "suggested_key": { "default": "Shift+Alt+Up" }, "description": "Pop tabs out into new window" }, "tabs-move-back": { "suggested_key": { "default": "Shift+Alt+Down" }, "description": "Pop tabs back into last window" }, "tabs-move-next": { "suggested_key": { "default": "Shift+Alt+Right" }, "description": "Move tabs to the next\/new window" }, "tabs-move-prev": { "suggested_key": { "default": "Shift+Alt+Left" }, "description": "Move tabs to the previous window" } }, "options_ui": { "page": "options.html", "chrome_style": true }, "short_name": "AltTabs", "permissions": [ "tabs" ] } |