Move Tab to Next Window
One-click to move a tab, NOW with Tab Groups support!
Move Tab to Next Windowとは何ですか?
Move Tab to Next WindowはRoman Shevtsovによって開発されたChromeの拡張機能で、その主な機能は「One-click to move a tab, NOW with Tab Groups support!」です。
拡張機能のスクリーンショット
Move Tab to Next Window拡張機能のCRXファイルをダウンロード
Move Tab to Next Window拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Especially useful for these amazing multi-monitor setups when it's too annoying to drag tabs around between windows. ## Quick feature list - the source tab position is saved in all windows, so if it's moved back into a window, it moves into its original position - if the tab is in a tab group, when moving it the identical group will be created or used in another window. When moving back to original window the tab will return into its original group - multiple tabs move - select multiple tabs (use shift or cmd/ctrl) and move all of them into the next window in the same order - if there is only 1 window, a new window will be opened on move - keyboard shortcut support Open sourced on Github for transparency.
拡張機能の基本情報
名前 | Move Tab to Next Window |
ID | ibpemckpjfpmhlagogddlajhaiemdjaf |
公式URL | https://chromewebstore.google.com/detail/move-tab-to-next-window/ibpemckpjfpmhlagogddlajhaiemdjaf |
説明 | One-click to move a tab, NOW with Tab Groups support! |
ファイルサイズ | 13.82 KB |
インストール数 | 452 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-08-31 |
公開日 | 2020-06-04 |
評価 | 5.00/5 合計 7 レビュー |
開発者 | Roman Shevtsov |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/rshev/MoveTabToNextWindow |
ヘルプページのURL | https://github.com/rshev/MoveTabToNextWindow |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Move Tab to Next Window", "version": "1.1.0", "description": "One-click to move a tab, NOW with Tab Groups support!", "homepage_url": "https:\/\/github.com\/rshev\/MoveTabToNextWindow", "permissions": [ "tabGroups", "storage" ], "background": { "service_worker": "index.js" }, "icons": { "16": "icon-dark-outlined-16.png", "32": "icon-dark-outlined-32.png", "48": "icon-dark-outlined-48.png", "128": "icon-dark-outlined-128.png" }, "action": { "default_title": "Move Tab to Next Window", "default_icon": { "16": "icon-light-outlined-16.png", "32": "icon-light-outlined-32.png" } }, "commands": { "move-tab": { "description": "Move Tab to Next Window" } } } |