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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a new window with the same properties as the closing one when the last tab is closed."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Do not close browser with last tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}