Praxis Eye Health
Reminders to help improve your health when using a computer
Hvad er Praxis Eye Health?
Praxis Eye Health er en Chrome-udvidelse udviklet af Alisha, og dens hovedfunktion er "Reminders to help improve your health when using a computer".
Udvidelsesskærmbilleder
Download Praxis Eye Health-udvidelses-CRX-fil
Download Praxis Eye Health-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Praxis helps reduce the negative impacts of extended web browsing such as eye strain, poor posture, diet, and general inactivity by reminding users to take a healthy break. Features: -A Chrome notification every 20 minutes to remind you of the 20-20-20 rule: Look 20 feet away from the screen every 20 minutes for at least 20 seconds. -A new exercise or yoga pose with an instructional gif accompanying the reminders to help incorporate some physical activity into your daily routine. -A daily water intake tracker.
Grundlæggende oplysninger om udvidelsen
Navn | Praxis Eye Health |
ID | dglbjkmiloehedbleclibjadageemaag |
Officiel URL | https://chromewebstore.google.com/detail/praxis-eye-health/dglbjkmiloehedbleclibjadageemaag |
Beskrivelse | Reminders to help improve your health when using a computer |
Filstørrelse | 2.59 MB |
Antal Installationer | 480 |
Nuværende Version | 1.2 |
Senest Opdateret | 2015-05-02 |
Udgivelsesdato | 2015-05-01 |
Bedømmelse | 4.59/5 Samlet 17 Bedømmelser |
Udvikler | Alisha |
Betalingsmetode | free |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Praxis Eye Health", "manifest_version": 2, "version": "1.2", "description": "Reminders to help improve your health when using a computer", "icons": { "16": "images\/logo_16.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "permissions": [ "notifications", "background" ], "browser_action": { "default_icon": "images\/logo_16.png", "default_popup": "popup.html", "default_title": "Praxis Eye Health" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.1.min.js", "popup.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "jquery-1.11.1.min.js", "background.js" ], "persistent": true } } |