Tab Shifter
NOTE: This extension does not work on Macs (I don't have a Mac and never tested it on a Mac. Maybe sometime in the future!) With…
Tab Shifterคืออะไร?
Tab Shifter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alexbudy และคุณลักษณะหลักของมันคือ "NOTE: This extension does not work on Macs (I don't have a Mac and never tested it on a Mac. Maybe sometime in the future!) With…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Shifter
ดาวน์โหลดไฟล์ส่วนขยาย Tab Shifter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NOTE: This extension does not work on Macs (I don't have a Mac and never tested it on a Mac. Maybe sometime in the future!) With very simple key strokes, Tab Shifter (and Window Mover) allows you to move the active tab left/right, and pin/unpin. It also optionally allows you to maximize and shrink your chrome screen, move tabs between screens, and move windows between monitors - all with just the keyboard! Main Controls: Ctrl+left/right (arrows): moves active tab let/right Ctrl+up (arrows): pins/unpins active tab Optional Controls (toggled in Options page): Move current window between monitors: Ctrl+Shift+[ or ] Maximize or shrink active window: Ctrl+Shift+' or/ Bring current tab to its own window: Ctrl+Shift+Space Bring current tab to another window (if available): Ctrl+Shift+Down (Controls are disabled while typing in text box to preserve text editing controls, can be enabled through settings) Have lots of tabs open, and want to quickly (without the mouse) move one tab to be next to another? Want to pin an important tab almost instantly? Want to divide your tabs between work and play with a simple keystroke, or put away a current tab for later reading? Want to move your window between your external monitors, with simple keystrokes? If you answered yes, Tab Shifter (and Window Mover) is the extension for you (I created it based on my needs to save me time moving between mouse and keyboard, and want to share). Please comment or e-mail me with any feedback - ([email protected]) GitHub Repo: https://github.com/alexbudy/tab_shifter (To access the options page, go to (chrome://extensions/) and click Options next to the extension! CHANGELOG: Version 1.12 - Added a bunch more controls, for moving tabs between windows and moving windows between monitors Version 1.10 - Settings synced for user Version 1.8 - Options now allow user to keep focus when pinning a tab Version 1.7 - Added setting for disabling controls whilst cursor in a textbox (on by default) Thank you Jessica Chang for the graphic design! Find her work here: www.jessmchang.com Find more of my work at www.AlexBudilovsky.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tab Shifter |
ID | hmmkcfoallifpmilkijjikcbcnnbcbih |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-shifter/hmmkcfoallifpmilkijjikcbcnnbcbih |
คำอธิบาย | NOTE: This extension does not work on Macs (I don't have a Mac and never tested it on a Mac. Maybe sometime in the future!) With… |
ขนาดไฟล์ | 16.21 KB |
จำนวนการติดตั้ง | 210 |
เวอร์ชันปัจจุบัน | 1.13 |
อัปเดตครั้งล่าสุด | 2022-05-09 |
วันที่เผยแพร่ | 2017-03-13 |
คะแนน | 3.38/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | alexbudy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.alexbudilovsky.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Shifter", "version": "1.13", "permissions": [ "background", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "manifest_version": 2 } |