Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
What is Pop out tabs to new window?
Pop out tabs to new window is a Chrome extension developed by Ivan Novikov, and its main feature is "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Download Pop out tabs to new window Extension CRX File
Download Pop out tabs to new window extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Official URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Description | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
File Size | 3.38 KB |
Installation Count | 248 |
Current Version | 1.1 |
Last Updated | 2018-03-14 |
Publish Date | 2018-03-14 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Ivan Novikov |
Payment Type | free |
Extension Website | https://twitter.com/ivan7237d |
Supported Languages | 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" } } } |