Iris
Software for eye protection
¿Qué es Iris?
Iris es una extensión de Chrome desarrollada por http://iristech.co, y su función principal es "Software for eye protection".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Iris
Descarga archivos de extensión Iris en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Iris is software which makes Monitors healthy for the eyes. With Iris you can reduce the Blue Light emitted from your screen for better sleep, reduce the Brightness of your screen without PWM and avoid eye pain. This is the first Blue light filter app for Chrome and ChromeOS which works by lowering blue light not just placing a trasnparent overlay on the screen. Will be improved to be automated but it's working also right now.
Información Básica de la Extensión
Nombre | |
ID | lgjddobbdahndjbbeeabffbakogobdhg |
URL Oficial | https://chrome.google.com/webstore/detail/iris/lgjddobbdahndjbbeeabffbakogobdhg |
Descripción | Software for eye protection |
Tamaño del Archivo | 6.01 MB |
Cantidad de Instalaciones | 534 |
Versión Actual | 0.0.9 |
Última Actualización | 2022-07-07 |
Fecha de Publicación | 2022-07-07 |
Calificación | 2.77/5 Total de 22 Calificaciones |
Desarrollador | http://iristech.co |
Correo electrónico | [email protected] |
Tipo de Pago | in_app |
Sitio Web de la Extensión | http://iristech.co/ |
URL de la Página de Ayuda | http://iristech.co/ |
URL de la Página de Política de Privacidad | https://iristech.co/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Iris", "description": "Software for eye protection", "version": "0.0.9", "background": { "persistent": false, "page": "background.html" }, "browser_action": { "default_icon": "img\/iris-128x128.png", "default_popup": "popup.html", "default_title": "Open Iris" }, "icons": { "128": "img\/iris-128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "html\/js\/otto\/otto.js", "js\/jquery\/jquery-2.1.4.min.js", "js\/content_script.js" ], "css": [ "css\/styles.css", "css\/video-fixer.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "css\/site_styles\/*", "html\/*" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "system" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |