Eye Watch
A reminder telling you that you should look away from your laptop for a moment
Vad är Eye Watch?
Eye Watch är en Chrome-tillägg utvecklad av Tapasya Velmurugan, och dess huvudfunktion är "A reminder telling you that you should look away from your laptop for a moment".
Tilläggsskärmbilder
Ladda ner Eye Watch-förlängningens CRX-fil
Ladda ner Eye Watch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | jleofoipkhnobeccjpocgmbbehioioka |
| Officiell webbadress | https://chromewebstore.google.com/detail/eye-watch/jleofoipkhnobeccjpocgmbbehioioka |
| Beskrivning | A reminder telling you that you should look away from your laptop for a moment |
| Filstorlek | 64.14 KB |
| Antal Installationer | 26 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2020-10-13 |
| Publiceringsdatum | 2020-10-04 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | Tapasya Velmurugan |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |