Open-as-Popup

Open the current tab as a popup window.

Open-as-Popup란 무엇입니까?

Open-as-Popup은(는) https://ht0.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open the current tab as a popup window."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Open-as-Popup 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Visit https://ht0.de/open-as-popup.html for more details about Open-as-Popup.

This is a really simple extension for the Google Chrome browser. It adds a button to the toolbar, a context menu entry and a keyboard shortcut that allows you to move a tab to a new popup window.

A popup window is a window without the navigation and the tab bar, so it will use much less vertical space. Because there is no toolbar visible inside a popup window, you need to use the context menu or the keyboard shortcut to move it back to a normal window if you want to. It will then try to attach it back to the window it earlier was detached from, and if this fails, for example because the window was meanwhile closed, it will attach it to the last focused window.

Usage and settings explanation in detail at https://ht0.de/open-as-popup.html
To contact me, see https://ht0.de/about-contact.html                    

확장 프로그램 기본 정보

이름 Open-as-Popup Open-as-Popup
ID ncppfjladdkdaemaghochfikpmghbcpc
공식 URL https://chromewebstore.google.com/detail/open-as-popup/ncppfjladdkdaemaghochfikpmghbcpc
설명 Open the current tab as a popup window.
파일 크기 87.35 KB
설치 횟수 63,950
현재 버전 2.0.0
최근 업데이트 2018-04-05
출시 날짜 2018-04-05
평점 4.89/5 총 244 개의 평점
개발자 https://ht0.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ht0.de/open-as-popup.html
도움말 페이지 URL https://ht0.de/open-as-popup.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open-as-Popup",
    "description": "Open the current tab as a popup window.",
    "version": "2.0.0",
    "homepage_url": "https:\/\/ht0.de\/open-as-popup.html",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "16": "app_icon_16.png",
        "48": "app_icon_48.png",
        "128": "app_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "app_icon_16.png",
            "48": "app_icon_48.png"
        },
        "default_title": "Open the current tab as a popup window."
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "commands": {
        "toggle_popup": {
            "description": "Toggle popup mode",
            "suggested_key": {
                "default": "Alt+0"
            },
            "global": false
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}