Eye Watch
A reminder telling you that you should look away from your laptop for a moment
什么是Eye Watch?
Eye Watch是由Tapasya Velmurugan开发的Chrome扩展程序,该扩展的主要功能是“A reminder telling you that you should look away from your laptop for a moment”。
扩展截图
下载Eye Watch扩展crx文件
下载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"
}
} | |