Idle reminder

Gives user notification after a certain maount of time idle.

Qu'est-ce que Idle reminder ?

Idle reminder est une extension Chrome développée par Matthew Perlick, et sa fonction principale est "Gives user notification after a certain maount of time idle.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Idle reminder

Téléchargez les fichiers d'extension Idle reminder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Idle reminder Idle reminder
ID mkboaajngkkeoeoamcbcngficggmlloj
URL Officiel https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj
Description Gives user notification after a certain maount of time idle.
Taille du Fichier 13.32 KB
Nombre d'Installations 33
Version Actuelle 1.0
Dernière Mise à Jour 2020-04-07
Date de Publication 2020-04-07
Évaluation 1.00/5 Total 1 Évaluations
Développeur Matthew Perlick
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}