Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
Что такое Sleep Timer?
Sleep Timer - это расширение Chrome, разработанное daniel.andrew.dehaas, и его основная функция - "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Снимки экрана расширения
Скачать файл CRX расширения Sleep Timer
Скачайте файлы расширений Sleep Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires. Основная информация о расширении
| Название | |
| ID | aogefgiamlllkemngojodbhbdigamjkj |
| Официальный URL | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
| Описание | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
| Размер файла | 25.49 KB |
| Количество установок | 5,756 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2021-02-03 |
| Дата публикации | 2021-02-02 |
| Рейтинг | 2.52/5 Всего 21 оценок |
| Разработчик | daniel.andrew.dehaas |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://www.danielde.dev/ |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sleep Timer",
"version": "1.0",
"description": "Put any tab on a sleep timer to close or mute the tab when the timer expires.",
"permissions": [
"tabs",
"alarms",
"storage"
],
"background": {
"scripts": [
".\/background.js"
],
"persistent": false
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"default_popup": "popup\/popup.html",
"default_title": "Sleep Timer"
}
} | |