Popout

A simple extension that allows tabs to be opened in a separate minimal window.

Cos'è Popout?

Popout è un'estensione di Chrome sviluppata da Space City Software, L.L.C., e la sua funzione principale è "A simple extension that allows tabs to be opened in a separate minimal window.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Popout

Scarica i file di estensione Popout in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Popout is a simple extension that allows tabs and web apps to be opened in a separate window with minimal controls. This is different from dragging tabs to a new window because Popup windows do not have to tab view, the address bar, or any buttons. This saves screen space and allows easier navigation to commonly used website and apps.                    

Informazioni di Base sull'Estensione

Nome Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
URL Ufficiale https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Descrizione A simple extension that allows tabs to be opened in a separate minimal window.
Dimensione del File 22.05 KB
Conteggio Installazioni 3,082
Versione Corrente 2.1
Ultimo Aggiornamento 2022-03-28
Data di Pubblicazione 2013-08-15
Valutazione 4.32/5 Totale 25 Valutazioni
Sviluppatore Space City Software, L.L.C.
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/chrisg32/Popout
URL della Pagina di Aiuto https://github.com/chrisg32/Popout/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Popout",
    "description": "A simple extension that allows tabs to be opened in a separate minimal window.",
    "version": "2.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Popout to external window.",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "toggleIcon.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}