Popup window

Move tab to standalone window, without tabs bar, navigation bar and bookmark bar UI.

Popup window란 무엇입니까?

Popup window은(는) ettoolong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Move tab to standalone window, without tabs bar, navigation bar and bookmark bar UI."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Popup window 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Move tab to standalone window, without tabs bar, navigation bar and bookmark bar UI.

Usage:
1. Right click on link, click [Open this link in pop-up window] => po-pup link to standalone window.
2. Right click on page, click [pop-up/merge current page] => move current page to standalone window.
3. Click on toolbar button => move current page to standalone window.                    

확장 프로그램 기본 정보

이름 Popup window Popup window
ID nnlippelgfbglbhiccffmnmlnhmbjjpe
공식 URL https://chromewebstore.google.com/detail/popup-window/nnlippelgfbglbhiccffmnmlnhmbjjpe
설명 Move tab to standalone window, without tabs bar, navigation bar and bookmark bar UI.
파일 크기 13.9 KB
설치 횟수 3,683
현재 버전 0.1.0
최근 업데이트 2023-03-16
출시 날짜 2019-05-13
평점 4.58/5 총 12 개의 평점
개발자 ettoolong
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/ettoolong/PopupWindow
지원되는 언어 en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extDescription__",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.1.0",
    "homepage_url": "https:\/\/github.com\/ettoolong\/PopupWindow",
    "icons": {
        "16": "icon\/icon.png",
        "32": "icon\/icon.png",
        "48": "icon\/icon.png",
        "64": "icon\/icon.png",
        "96": "icon\/icon.png"
    },
    "author": "Ett Chung",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "browser_style": true,
        "default_title": "__MSG_actionButtonTitle__",
        "default_icon": "icon\/icon.png"
    },
    "default_locale": "en",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "popupWindow": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "__MSG_execute__"
        }
    }
}