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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.
이메일 [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"
    ]
}