Move Tab Left
This extension allows you to put the current tab at the beggining of the tab bar.
Move Tab Left là gì?
Move Tab Left là một tiện ích mở rộng Chrome được phát triển bởi mp, và tính năng chính của nó là "This extension allows you to put the current tab at the beggining of the tab bar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Move Tab Left
Tải xuống các tệp mở rộng Move Tab Left dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Move Tab Left |
ID | flgjflnifhabbdliblomhkhoplfhheie |
URL Chính Thức | https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie |
Mô tả | This extension allows you to put the current tab at the beggining of the tab bar. |
Kích Thước Tệp | 7.64 KB |
Số Lần Cài Đặt | 207 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2016-08-28 |
Ngày Phát Hành | 2016-08-28 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | mp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://brostack.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |