Popout

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

Apa itu Popout?

Popout adalah ekstensi Chrome yang dikembangkan oleh Space City Software, L.L.C., dan fitur utamanya adalah "A simple extension that allows tabs to be opened in a separate minimal window.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Popout

Unduh file ekstensi Popout dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
URL Resmi https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Deskripsi A simple extension that allows tabs to be opened in a separate minimal window.
Ukuran File 22.05 KB
Jumlah Instalasi 3,082
Versi Saat Ini 2.1
Terakhir Diperbarui 2022-03-28
Tanggal Publikasi 2013-08-15
Penilaian 4.32/5 Total 25 Penilaian
Pengembang Space City Software, L.L.C.
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/chrisg32/Popout
URL Halaman Bantuan https://github.com/chrisg32/Popout/issues
Bahasa yang Didukung 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"
    ]
}