Previous Tab
Switch back to the previously active tab using the keyboard.
Was ist Previous Tab?
Previous Tab ist eine Chrome-Erweiterung, die von previoustab.com entwickelt wurde, und ihr Hauptmerkmal ist "Switch back to the previously active tab using the keyboard.".
Erweiterungsscreenshots
Previous Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Previous Tab-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
Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon. You can change the keyboard shortcut by visiting chrome://extensions/shortcuts . Previous Tab does not require any permissions to install and use. Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts. The supported keys are Alt, Ctrl, Cmd along with: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop). Donations are appreciated at donate.previoustab.com
Grundlegende Informationen zur Erweiterung
Name | Previous Tab |
ID | bjaniflnlhhofabpoamhnobeonjcjjpl |
Offizielle URL | https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl |
Beschreibung | Switch back to the previously active tab using the keyboard. |
Dateigröße | 468 KB |
Installationsanzahl | 10,000 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2022-11-12 |
Veröffentlichungsdatum | 2020-02-28 |
Bewertung | 4.84/5 Insgesamt 97 Bewertungen |
Entwickler | previoustab.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Previous Tab", "description": "Switch back to the previously active tab using the keyboard.", "version": "1.0.2", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "switch-to-previously-active-tab": { "description": "Switch back to the previously active tab", "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Q" } } }, "browser_action": { "default_icon": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |