Popout

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

Was ist Popout?

Popout ist eine Chrome-Erweiterung, die von Space City Software, L.L.C. entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that allows tabs to be opened in a separate minimal window.".

Erweiterungsscreenshots

screenshot
screenshot

Popout-Erweiterungs-CRX-Datei herunterladen

Laden Sie Popout-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
Offizielle URL https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Beschreibung A simple extension that allows tabs to be opened in a separate minimal window.
Dateigröße 22.05 KB
Installationsanzahl 3,082
Aktuelle Version 2.1
Letztes Update 2022-03-28
Veröffentlichungsdatum 2013-08-15
Bewertung 4.32/5 Insgesamt 25 Bewertungen
Entwickler Space City Software, L.L.C.
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/chrisg32/Popout
Hilfeseite URL https://github.com/chrisg32/Popout/issues
Unterstützte Sprachen 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"
    ]
}