Don't Close Window With Last Tab

Prevent closing of Google Chrome with the last tab, the least intrusive way.

Was ist Don't Close Window With Last Tab?

Don't Close Window With Last Tab ist eine Chrome-Erweiterung, die von Marcel Dopita entwickelt wurde, und ihr Hauptmerkmal ist "Prevent closing of Google Chrome with the last tab, the least intrusive way.".

Erweiterungsscreenshots

screenshot
screenshot

Don't Close Window With Last Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Don't Close Window With Last Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension keeps a single pinned page to prevent closing Chrome when the last tab of the last window is closed (or every window, it's configurable). To keep the tab bar clean (unlike other extensions), the pinned page is inserted only when absolutely necessary. It also handles well cases when tabs are moved between windows.

"Don't Close Window With Last Tab" provides no user interface or interaction for users. It only lets users configure additional configuration in "Options".

This extension is open source, to be found at: https://github.com/moneytoo/DontCloseWindowWithLastTab                    

Grundlegende Informationen zur Erweiterung

Name Don't Close Window With Last Tab Don't Close Window With Last Tab
ID dlnpfhfhmkiebpnlllpehlmklgdggbhn
Offizielle URL https://chromewebstore.google.com/detail/dont-close-window-with-la/dlnpfhfhmkiebpnlllpehlmklgdggbhn
Beschreibung Prevent closing of Google Chrome with the last tab, the least intrusive way.
Dateigröße 18.05 KB
Installationsanzahl 41,333
Aktuelle Version 0.11
Letztes Update 2022-06-05
Veröffentlichungsdatum 2017-09-05
Bewertung 4.06/5 Insgesamt 140 Bewertungen
Entwickler Marcel Dopita
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://brouken.com/privacy-policy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Don't Close Window With Last Tab",
    "version": "0.11",
    "description": "Prevent closing of Google Chrome with the last tab, the least intrusive way.",
    "manifest_version": 3,
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}