Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
什麼是Tab Keys?
Tab Keys是由thekiteeatingtree開發的Chrome擴展程式,該擴展的主要功能是“Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.”。
下載Tab Keys擴展crx文件
下載Tab Keys擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
擴展基本資訊
名稱 | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
官方網址 | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
簡介 | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
檔案大小 | 4.5 KB |
安裝次數 | 21 |
目前版本 | 1.0 |
更新時間 | 2017-07-27 |
上架時間 | 2017-07-27 |
開發者 | thekiteeatingtree |
付費類型 | free |
擴展官網 | https://github.com/TheKiteEatingTree/TabKeys |
說明頁面URL | https://github.com/TheKiteEatingTree/TabKeys/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |