Auto Closer

An extension that just close the tabs you don't need.

Что такое Auto Closer?

Auto Closer - это расширение Chrome, разработанное Mt.blue81, и его основная функция - "An extension that just close the tabs you don't need.".

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

screenshot

Скачать файл CRX расширения Auto Closer

Скачайте файлы расширений Auto Closer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        1. Add your site URL. (as a regular expression) option-image
2. Then open your site.
3. Site will close in a second.

It is mainly intended for closing tabs that are no longer needed when opening applications via a browser.
The delay to close can be changed in the extension option.                    

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

Название Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
Официальный URL https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
Описание An extension that just close the tabs you don't need.
Размер файла 13.68 KB
Количество установок 579
Текущая Версия 2.1.0
Последнее Обновление 2023-10-30
Дата публикации 2021-01-13
Рейтинг 4.67/5 Всего 3 оценок
Разработчик Mt.blue81
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/MtBlue81/auto-closer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Closer",
    "version": "2.1.0",
    "description": "An extension that just close the tabs you don't need.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}