Praxis Eye Health
Reminders to help improve your health when using a computer
Cos'è Praxis Eye Health?
Praxis Eye Health è un'estensione di Chrome sviluppata da Alisha, e la sua funzione principale è "Reminders to help improve your health when using a computer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Praxis Eye Health
Scarica i file di estensione Praxis Eye Health in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Praxis Eye Health |
ID | dglbjkmiloehedbleclibjadageemaag |
URL Ufficiale | https://chromewebstore.google.com/detail/praxis-eye-health/dglbjkmiloehedbleclibjadageemaag |
Descrizione | Reminders to help improve your health when using a computer |
Dimensione del File | 2.59 MB |
Conteggio Installazioni | 480 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2015-05-02 |
Data di Pubblicazione | 2015-05-01 |
Valutazione | 4.59/5 Totale 17 Valutazioni |
Sviluppatore | Alisha |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |