Keyboard Shortcuts to Reorder Tabs
Chrome extension adding shortcuts for moving tabs around
什麼是Keyboard Shortcuts to Reorder Tabs?
Keyboard Shortcuts to Reorder Tabs是由Michael Fester開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension adding shortcuts for moving tabs around”。
擴展截圖
下載Keyboard Shortcuts to Reorder Tabs擴展crx文件
下載Keyboard Shortcuts to Reorder Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension consists of four keyboard shortcuts (VIM style): * Alt-Shift-L: Move Tab Right * Alt-Shift-H: Move Tab Left * Alt-Shift-K: Move Tab to Start Position * Alt-Shift-J: Move Tab to End Position A separate extension, tabasco, adds the following shortcuts to Chrome * Close Other Tabs * Close Tabs to the Right * Pin Tab Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabloid. You can fetch tabasco here: https://chrome.google.com/webstore/detail/tabasco/dkoadhojigekhckndaehenfbhcgfeepl
擴展基本資訊
名稱 | Keyboard Shortcuts to Reorder Tabs |
ID | femidpfpildjfepkcaodpalpakgadjih |
官方網址 | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih |
簡介 | Chrome extension adding shortcuts for moving tabs around |
檔案大小 | 3.75 KB |
安裝次數 | 355 |
目前版本 | 1.0.0 |
更新時間 | 2023-10-27 |
上架時間 | 2013-01-23 |
評分 | 4.25/5 共 16 次評分 |
開發者 | Michael Fester |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://michaelfester.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Reorder Tabs", "version": "1.0.0", "manifest_version": 3, "description": "Chrome extension adding shortcuts for moving tabs around", "background": { "service_worker": "background.js" }, "commands": { "move-tab-right": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Move Tab to the right" }, "move-tab-left": { "suggested_key": { "default": "Alt+Shift+H" }, "description": "Move Tab to the left" }, "move-tab-first": { "suggested_key": { "default": "Alt+Shift+K" }, "description": "Move Tab to first position" }, "move-tab-last": { "suggested_key": { "default": "Alt+Shift+J" }, "description": "Move Tab to last position" } } } |