Popout

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

O que é Popout?

Popout é uma extensão do Chrome desenvolvida por Space City Software, L.L.C., e sua principal característica é "A simple extension that allows tabs to be opened in a separate minimal window.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Popout

Baixe arquivos de extensão Popout no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
URL Oficial https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Descrição A simple extension that allows tabs to be opened in a separate minimal window.
Tamanho do Arquivo 22.05 KB
Contagem de Instalações 3,082
Versão Atual 2.1
Última Atualização 2022-03-28
Data de Publicação 2013-08-15
Classificação 4.32/5 Total de 25 Avaliações
Desenvolvedor Space City Software, L.L.C.
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/chrisg32/Popout
URL da Página de Ajuda https://github.com/chrisg32/Popout/issues
Idiomas Suportados 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"
    ]
}