Tab Stack
Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
什麼是Tab Stack?
Tab Stack是由nemesisper開發的Chrome擴展程式,該擴展的主要功能是“Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows”。
擴展截圖
下載Tab Stack擴展crx文件
下載Tab Stack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Mimic the function of Alt + Tab in Windows or Command + Tab in MacOS to manage tabs. - Use Alt + 1 (Option + 1 in MacOS) to open the extension. The extension shows the tab list according to the order they activated. So you can easily switch between most recently activated tabs by using shortcuts. - While you are selecting tab you want to jump to, keep Alt (Option) down. - Up/ Down arrow to select tab in tab list, hit Enter or just release Alt (Option) to jump to the tab you selected. - If you decide to stay in current tab, simply use Alt + 1 (Option + 1) to close the extension. 2018.07.11 - Add scrolling function of key Q and W, same as up/down arrow key.
擴展基本資訊
名稱 | |
ID | jipfnojdidlbelcajjonblnmmbcjnbpk |
官方網址 | https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk |
簡介 | Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows |
檔案大小 | 429 KB |
安裝次數 | 36 |
目前版本 | 1.0 |
更新時間 | 2018-09-05 |
上架時間 | 2018-09-05 |
評分 | 1.00/5 共 2 次評分 |
開發者 | nemesisper |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/yirunzhou/Tab-Stack |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Stack", "version": "1.0", "description": "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows", "manifest_version": 2, "permissions": [ "activeTab", "tabs", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": { "128": "images\/tab_stack_128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+1" } } } } |