Tab Close Timer

Closes the tab after specified time!

Что такое Tab Close Timer?

Tab Close Timer - это расширение Chrome, разработанное Aditya Mhatre, и его основная функция - "Closes the tab after specified time!".

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

screenshot

Скачать файл CRX расширения Tab Close Timer

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

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

                        Watching YouTube videos for extended number of times and want to control it?
Now you can with this extension.

Simply enter the desired number of hours and minutes in the extension and click OK. The tab will automatically close after the set time.                    

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

Название Tab Close Timer Tab Close Timer
ID fjcngjmpebbfdjpndmlbfoldgiinpfcf
Официальный URL https://chromewebstore.google.com/detail/tab-close-timer/fjcngjmpebbfdjpndmlbfoldgiinpfcf
Описание Closes the tab after specified time!
Размер файла 15.29 KB
Количество установок 3,119
Текущая Версия 1.0
Последнее Обновление 2022-01-19
Дата публикации 2022-01-18
Рейтинг 4.00/5 Всего 7 оценок
Разработчик Aditya Mhatre
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Close Timer",
    "description": "Closes the tab after specified time!",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "alarms"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon.png"
    }
}