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是由mp開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to put the current tab at the beggining of the tab bar.”。
擴展截圖
下載Move Tab Left擴展crx文件
下載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 |
官方網址 | 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" } } } |