Tab Stack
Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
Wat is Tab Stack?
Tab Stack is een Chrome-extensie ontwikkeld door nemesisper, en de belangrijkste functie is "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Stack
Download Tab Stack-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | jipfnojdidlbelcajjonblnmmbcjnbpk |
Officiële URL | https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk |
Beschrijving | Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows |
Bestandsgrootte | 429 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-09-05 |
Publicatiedatum | 2018-09-05 |
Beoordeling | 1.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | nemesisper |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/yirunzhou/Tab-Stack |
Ondersteunde Talen | 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" } } } } |