Popout

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

Popout là gì?

Popout là một tiện ích mở rộng Chrome được phát triển bởi Space City Software, L.L.C., và tính năng chính của nó là "A simple extension that allows tabs to be opened in a separate minimal window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Popout

Tải xuống các tệp mở rộng Popout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
URL Chính Thức https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Mô tả A simple extension that allows tabs to be opened in a separate minimal window.
Kích Thước Tệp 22.05 KB
Số Lần Cài Đặt 3,082
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2022-03-28
Ngày Phát Hành 2013-08-15
Đánh Giá 4.32/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Space City Software, L.L.C.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chrisg32/Popout
URL Trang Trợ Giúp https://github.com/chrisg32/Popout/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}