Popout

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

What is Popout?

Popout is a Chrome extension developed by Space City Software, L.L.C., and its main feature is "A simple extension that allows tabs to be opened in a separate minimal window.".

Extension Screenshots

screenshot
screenshot

Download Popout Extension CRX File

Download Popout 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

                        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.                    

Extension Basic Information

Name Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
Official URL https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Description A simple extension that allows tabs to be opened in a separate minimal window.
File Size 22.05 KB
Installation Count 3,082
Current Version 2.1
Last Updated 2022-03-28
Publish Date 2013-08-15
Rating 4.32/5 Total 25 Ratings
Developer Space City Software, L.L.C.
Email [email protected]
Payment Type free
Extension Website https://github.com/chrisg32/Popout
Help Page URL https://github.com/chrisg32/Popout/issues
Supported Languages 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"
    ]
}