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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roman Shevtsov และคุณลักษณะหลักของมันคือ "One-click to move a tab, NOW with Tab Groups support!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Move Tab to Next Window
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } } |