Idle reminder

Gives user notification after a certain maount of time idle.

¿Qué es Idle reminder?

Idle reminder es una extensión de Chrome desarrollada por Matthew Perlick, y su función principal es "Gives user notification after a certain maount of time idle.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Idle reminder

Descarga archivos de extensión Idle reminder 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

                        This extension sends you a reminder notification after you've been inactive for a certain amount of time. You can set this time by clicking the Idle Reminder icon in your chrome toolbar. 

This extension is intended for people who wan't to stay on task while working. It can also be helpful for remote workers that will appear as 'inactive' or 'idle' to their employer and coworkers after a certain amount of time away from the computer.

This extension does not collect any user data, is incredibly lightweight, and completely open source. All source files available on github here: https://github.com/perlick/inactivity-reminder.                    

Información Básica de la Extensión

Nombre Idle reminder Idle reminder
ID mkboaajngkkeoeoamcbcngficggmlloj
URL Oficial https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj
Descripción Gives user notification after a certain maount of time idle.
Tamaño del Archivo 13.32 KB
Cantidad de Instalaciones 33
Versión Actual 1.0
Última Actualización 2020-04-07
Fecha de Publicación 2020-04-07
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador Matthew Perlick
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Idle reminder",
    "description": "Gives user notification after a certain maount of time idle.",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "notifications",
        "storage",
        "idle"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Idle Reminder",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "drink_water16.png",
        "32": "drink_water32.png",
        "48": "drink_water48.png",
        "128": "drink_water128.png"
    }
}