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 |
官方網址 | 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 |
電子郵箱 | [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" } } } |