20 Minute Timer
20 Minute Timer is an alarm that fires after twenty minutes.
Что такое 20 Minute Timer?
20 Minute Timer - это расширение Chrome, разработанное DMBFullstack, и его основная функция - "20 Minute Timer is an alarm that fires after twenty minutes.".
Снимки экрана расширения
Скачать файл CRX расширения 20 Minute Timer
Скачайте файлы расширений 20 Minute Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a 20 minute timer. It has a dual-purpose start/stop button and a reset button. When the popup is open the remaining time is visible and updated every second. A badge on the plugin's icon is visible when the timer is running and when the timer has finished. A zen bell sounds and a notification is generated when the timer elapses. Основная информация о расширении
| Название | |
| ID | mjpefkiaapcahdnkgccllcplgafdjifj |
| Официальный URL | https://chromewebstore.google.com/detail/20-minute-timer/mjpefkiaapcahdnkgccllcplgafdjifj |
| Описание | 20 Minute Timer is an alarm that fires after twenty minutes. |
| Размер файла | 959 KB |
| Количество установок | 405 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2016-04-09 |
| Дата публикации | 2016-04-09 |
| Рейтинг | 4.86/5 Всего 7 оценок |
| Разработчик | DMBFullstack |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "20 Minute Timer",
"short_name": "20 Minute Timer",
"description": "20 Minute Timer is an alarm that fires after twenty minutes.",
"version": "1.0.1",
"author": "DMBFullstack",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "20 Minute Timer"
},
"permissions": [
"notifications",
"alarms",
"storage"
],
"web_accessible_resources": [
"icon.png"
],
"background": {
"page": "eventPage.html",
"persistent": false
},
"icons": {
"16": "icon.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |