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
公式URL 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.
Eメール [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"
    ]
}