New Tab in Group
Opens a new tab in the current group via keyboard shortcut
Was ist New Tab in Group?
New Tab in Group ist eine Chrome-Erweiterung, die von Toby Wolff-Maritz entwickelt wurde, und ihr Hauptmerkmal ist "Opens a new tab in the current group via keyboard shortcut".
Erweiterungsscreenshots
New Tab in Group-Erweiterungs-CRX-Datei herunterladen
Laden Sie New Tab in Group-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A simple extension that opens a new tab in the current tab group using a shortcut.
Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cgcjmikekhoocfjbihnklkpfapmgjboi |
| Offizielle URL | https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi |
| Beschreibung | Opens a new tab in the current group via keyboard shortcut |
| Dateigröße | 9.3 KB |
| Installationsanzahl | 63 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2022-07-25 |
| Veröffentlichungsdatum | 2022-07-23 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Toby Wolff-Maritz |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/tmaritz/chrome-extension-new-tab-in-group |
| Unterstützte Sprachen | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "New Tab in Group",
"version": "0.0.1",
"description": "Opens a new tab in the current group via keyboard shortcut",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": [],
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
}
},
"icons": {
"16": "assets\/layer-plus16.png",
"32": "assets\/layer-plus32.png",
"64": "assets\/layer-plus64.png",
"128": "assets\/layer-plus128.png"
}
} | |