Popout

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

什麼是Popout?

Popout是由Space City Software, L.L.C.開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that allows tabs to be opened in a separate minimal window.”。

擴展截圖

screenshot
screenshot

下載Popout擴展crx文件

下載Popout擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
官方網址 https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
簡介 A simple extension that allows tabs to be opened in a separate minimal window.
檔案大小 22.05 KB
安裝次數 3,082
目前版本 2.1
更新時間 2022-03-28
上架時間 2013-08-15
評分 4.32/5 共 25 次評分
開發者 Space City Software, L.L.C.
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/chrisg32/Popout
說明頁面URL https://github.com/chrisg32/Popout/issues
支援的語言 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"
    ]
}