Tab and Tab Group Shortcuts
Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Hvad er Tab and Tab Group Shortcuts?
Tab and Tab Group Shortcuts er en Chrome-udvidelse udviklet af bmalehorn, og dens hovedfunktion er "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".
Udvidelsesskærmbilleder
Download Tab and Tab Group Shortcuts-udvidelses-CRX-fil
Download Tab and Tab Group Shortcuts-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Adds multiple shortcuts to manage tabs: Opens a tab in the same group as the current tab. Mac: Command+Shift+Y Windows: Ctrl+Shift+Y Swap the tab to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Swap the tab to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | nnbnphmhdbcgnekonlgniafbpcpapkep |
Officiel URL | https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep |
Beskrivelse | Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus. |
Filstørrelse | 6.83 KB |
Antal Installationer | 216 |
Nuværende Version | 1.0.6 |
Senest Opdateret | 2023-10-08 |
Udgivelsesdato | 2022-07-19 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | bmalehorn |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/bmalehorn/new-tab-in-tab-group |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab and Tab Group Shortcuts", "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.", "version": "1.0.6", "manifest_version": 3, "permissions": [ "tabs", "tabGroups" ], "background": { "service_worker": "background.js" }, "commands": { "swap-right": { "description": "Swap tab to the right" }, "swap-left": { "description": "Swap tab to the left" }, "focus-left-into-group": { "description": "Move focus left into tab group" }, "focus-right-into-group": { "description": "Move focus right into tab group" }, "new-tab-in-group": { "description": "Open New Tab in Group", "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } }, "icons": { "128": "icon.png" } } |