Pop out tabs to new window

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

Hvad er Pop out tabs to new window?

Pop out tabs to new window er en Chrome-udvidelse udviklet af Ivan Novikov, og dens hovedfunktion er "Click the extension's toolbar button to pop out selected tab(s) to a new window.".

Download Pop out tabs to new window-udvidelses-CRX-fil

Download Pop out tabs to new window-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Pop out tabs to new window Pop out tabs to new window
ID lhnaddgiebpcecbcmfcjmlhinfpkkjii
Officiel URL https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii
Beskrivelse Click the extension's toolbar button to pop out selected tab(s) to a new window.
Filstørrelse 3.38 KB
Antal Installationer 248
Nuværende Version 1.1
Senest Opdateret 2018-03-14
Udgivelsesdato 2018-03-14
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Ivan Novikov
Betalingsmetode free
Udvidelseswebsted https://twitter.com/ivan7237d
Understøttede Sprog 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"
        }
    }
}