20/20/20 Reminders
Provides unobtrusive reminders to help you follow the 20/20/20 rule.
Что такое 20/20/20 Reminders?
20/20/20 Reminders - это расширение Chrome, разработанное Wolffsohn Research, и его основная функция - "Provides unobtrusive reminders to help you follow the 20/20/20 rule.".
Снимки экрана расширения
Скачать файл CRX расширения 20/20/20 Reminders
Скачайте файлы расширений 20/20/20 Reminders в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Help your eyes to relax and combat the symptoms of Computer Vision Syndrome by following the 20/20/20 rule. Every 20 minutes, take a break from your screen for 20 seconds and focus on something 20 feet away. This lightweight extension will help you to follow the rule by providing a small desktop notification every 20 minutes. You can optionally configure the interval and duration of the break period and play a sound when it starts and finishes.
Основная информация о расширении
Название | 20/20/20 Reminders |
ID | hdadofjbdnckpfbmddfkgpnpchcfbpki |
Официальный URL | https://chromewebstore.google.com/detail/202020-reminders/hdadofjbdnckpfbmddfkgpnpchcfbpki |
Описание | Provides unobtrusive reminders to help you follow the 20/20/20 rule. |
Размер файла | 112 KB |
Количество установок | 1,000 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2021-07-18 |
Дата публикации | 2021-07-04 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Wolffsohn Research |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.wolffsohnresearch.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "20\/20\/20 Reminders", "version": "1.0.1", "manifest_version": 2, "minimum_chrome_version": "42", "author": "Wolffsohn Research", "description": "Provides unobtrusive reminders to help you follow the 20\/20\/20 rule.", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "background": { "scripts": [ "background.js", "constants.js" ], "persistent": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "options.html" }, "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage", "notifications", "alarms" ] } |