Do not close browser with last tab

Creates a new window with the same properties as the closing one when the last tab is closed.

什麼是Do not close browser with last tab?

Do not close browser with last tab是由Sebastian Blask開發的Chrome擴展程式,該擴展的主要功能是“Creates a new window with the same properties as the closing one when the last tab is closed.”。

擴展截圖

下載Do not close browser with last tab擴展crx文件

下載Do not close browser with last tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Do not close browser with last tab
==================================

Chrome usually shuts down when its last tab is closed. This extension creates a
new window with the same properties as the closing one when this happens. You
might get a flicker, but the perceived effect will be that a new tab replaces
the closed one.

As there is neither a way to capture the window properties while the tab is
closing nor an event that informs about updates to the properties, they are
cached whenever the focus of the window or a tab changes (which includes
creating new windows and tabs).

This extension only works if the `Continue running background apps when
Chromium is closed` setting (under `Advanced`) is enabled (it is by default).

Known Issues
------------

XFCE: The properties of non-maximized windows given by Chrome are incorrect as
they do not account for border and title bar. This results in a displacement
when the window is re-created.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-do-not-close-browser-with-last-tab

Patches are welcome.                    

擴展基本資訊

名稱 Do not close browser with last tab Do not close browser with last tab
ID iiolkehjeklhkdphaakkceadenbcdahj
官方網址 https://chromewebstore.google.com/detail/do-not-close-browser-with/iiolkehjeklhkdphaakkceadenbcdahj
簡介 Creates a new window with the same properties as the closing one when the last tab is closed.
檔案大小 30.88 KB
安裝次數 655
目前版本 1.0.0
更新時間 2023-03-31
上架時間 2017-11-12
評分 2.80/5 共 10 次評分
開發者 Sebastian Blask
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sblask/webextension-do-not-close-browser-with-last-tab
說明頁面URL https://github.com/sblask/webextension-do-not-close-browser-with-last-tab
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Creates a new window with the same properties as the closing one when the last tab is closed.",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-do-not-close-browser-with-last-tab",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Do not close browser with last tab",
    "offline_enabled": true,
    "permissions": [
        "background"
    ],
    "version": "1.0.0"
}