Open-as-Popup

Open the current tab as a popup window.

Open-as-Popup là gì?

Open-as-Popup là một tiện ích mở rộng Chrome được phát triển bởi https://ht0.de, và tính năng chính của nó là "Open the current tab as a popup window.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Open-as-Popup 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

                        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                    

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

Tên Open-as-Popup Open-as-Popup
ID ncppfjladdkdaemaghochfikpmghbcpc
URL Chính Thức https://chromewebstore.google.com/detail/open-as-popup/ncppfjladdkdaemaghochfikpmghbcpc
Mô tả Open the current tab as a popup window.
Kích Thước Tệp 87.35 KB
Số Lần Cài Đặt 63,950
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2018-04-05
Ngày Phát Hành 2018-04-05
Đánh Giá 4.89/5 Tổng số 244 Đánh Giá
Nhà Phát Triển https://ht0.de
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ht0.de/open-as-popup.html
URL Trang Trợ Giúp https://ht0.de/open-as-popup.html
Ngôn Ngữ Được Hỗ Trợ 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
    }
}