Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
什麼是Tab Manager Shortcuts?
Tab Manager Shortcuts是由Daniel Pham開發的Chrome擴展程式,該擴展的主要功能是“Manage your chrome tabs with keyboard shortcuts.”。
擴展截圖
下載Tab Manager Shortcuts擴展crx文件
下載Tab Manager Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
擴展基本資訊
名稱 | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
官方網址 | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
簡介 | Manage your chrome tabs with keyboard shortcuts. |
檔案大小 | 21.21 KB |
安裝次數 | 314 |
目前版本 | 2.0.0 |
更新時間 | 2016-12-27 |
上架時間 | 2016-12-27 |
評分 | 3.36/5 共 11 次評分 |
開發者 | Daniel Pham |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/danhp/tab-manager-chrome |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |