Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Was ist Pop out tabs to new window?
Pop out tabs to new window ist eine Chrome-Erweiterung, die von Ivan Novikov entwickelt wurde, und ihr Hauptmerkmal ist "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Pop out tabs to new window-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pop out tabs to new window-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
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
Grundlegende Informationen zur Erweiterung
Name | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Offizielle URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Beschreibung | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Dateigröße | 3.38 KB |
Installationsanzahl | 248 |
Aktuelle Version | 1.1 |
Letztes Update | 2018-03-14 |
Veröffentlichungsdatum | 2018-03-14 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Ivan Novikov |
Zahlungsart | free |
Erweiterungswebsite | https://twitter.com/ivan7237d |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |