Pop out tabs to new window

Click the extension's toolbar button to pop out selected tab(s) to a new window.

Wat is Pop out tabs to new window?

Pop out tabs to new window is een Chrome-extensie ontwikkeld door Ivan Novikov, en de belangrijkste functie is "Click the extension's toolbar button to pop out selected tab(s) to a new window.".

Download het CRX-bestand van de extensie Pop out tabs to new window

Download Pop out tabs to new window-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pop out tabs to new window Pop out tabs to new window
ID lhnaddgiebpcecbcmfcjmlhinfpkkjii
Officiële URL https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii
Beschrijving Click the extension's toolbar button to pop out selected tab(s) to a new window.
Bestandsgrootte 3.38 KB
Aantal Installaties 248
Huidige Versie 1.1
Laatst Bijgewerkt 2018-03-14
Publicatiedatum 2018-03-14
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Ivan Novikov
Betalingswijze free
Extensiewebsite https://twitter.com/ivan7237d
Ondersteunde Talen 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"
        }
    }
}