Eye Watch
A reminder telling you that you should look away from your laptop for a moment
Что такое Eye Watch?
Eye Watch - это расширение Chrome, разработанное Tapasya Velmurugan, и его основная функция - "A reminder telling you that you should look away from your laptop for a moment".
Снимки экрана расширения
Скачать файл CRX расширения Eye Watch
Скачайте файлы расширений Eye Watch в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Due to COVID-19 situation, most schools are forced to go virtual, including my high school. This forces everyone to spend more time on a screen than normal. Over the last few weeks of school, me and my friends noticed that our eyes hurt during zoom calls. Because of this, I have created a chrome extension for not just me, but for all students to use as a reminder to look away from their screen for few seconds to reduce eye strain. Основная информация о расширении
| Название | |
| ID | jleofoipkhnobeccjpocgmbbehioioka |
| Официальный URL | https://chromewebstore.google.com/detail/eye-watch/jleofoipkhnobeccjpocgmbbehioioka |
| Описание | A reminder telling you that you should look away from your laptop for a moment |
| Размер файла | 64.14 KB |
| Количество установок | 26 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2020-10-13 |
| Дата публикации | 2020-10-04 |
| Рейтинг | 5.00/5 Всего 5 оценок |
| Разработчик | Tapasya Velmurugan |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Eye Watch",
"description": "A reminder telling you that you should look away from your laptop for a moment",
"version": "1.1",
"manifest_version": 2,
"permissions": [
"alarms",
"notifications",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Eye Watch",
"default_popup": "popup.html"
},
"icons": {
"16": "eyeS.png",
"32": "eyeS.png",
"48": "eyeS.png",
"128": "eyeS.png"
}
} | |