Don't Close Window With Last Tab

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

Что такое Don't Close Window With Last Tab?

Don't Close Window With Last Tab - это расширение Chrome, разработанное Marcel Dopita, и его основная функция - "Prevent closing of Google Chrome with the last tab, the least intrusive way.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Don't Close Window With Last Tab

Скачайте файлы расширений Don't Close Window With Last Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Don't Close Window With Last Tab Don't Close Window With Last Tab
ID dlnpfhfhmkiebpnlllpehlmklgdggbhn
Официальный URL https://chromewebstore.google.com/detail/dont-close-window-with-la/dlnpfhfhmkiebpnlllpehlmklgdggbhn
Описание Prevent closing of Google Chrome with the last tab, the least intrusive way.
Размер файла 18.05 KB
Количество установок 41,333
Текущая Версия 0.11
Последнее Обновление 2022-06-05
Дата публикации 2017-09-05
Рейтинг 4.06/5 Всего 140 оценок
Разработчик Marcel Dopita
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://brouken.com/privacy-policy.html
Поддерживаемые языки 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"
    }
}