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文件

下載Open-as-Popup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
    }
}