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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}