Move Tab Left
This extension allows you to put the current tab at the beggining of the tab bar.
Move Tab Leftคืออะไร?
Move Tab Left เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mp และคุณลักษณะหลักของมันคือ "This extension allows you to put the current tab at the beggining of the tab bar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Move Tab Left
ดาวน์โหลดไฟล์ส่วนขยาย Move Tab Left ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Very often you need to move the current tab to the beginning of the tab bar, to the left. This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut. By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom). Update V2: - Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Move Tab Left |
ID | flgjflnifhabbdliblomhkhoplfhheie |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie |
คำอธิบาย | This extension allows you to put the current tab at the beggining of the tab bar. |
ขนาดไฟล์ | 7.64 KB |
จำนวนการติดตั้ง | 207 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2016-08-28 |
วันที่เผยแพร่ | 2016-08-28 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | mp |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://brostack.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Move Tab Left", "description": "This extension allows you to put the current tab at the beggining of the tab bar.", "version": "2.1", "browser_action": { "default_icon": { "38": "icon38.png" }, "default_title": "Move Tab Left" }, "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "move_tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Put tab at the beginning" } } } |