Idle reminder
Gives user notification after a certain maount of time idle.
Cos'è Idle reminder?
Idle reminder è un'estensione di Chrome sviluppata da Matthew Perlick, e la sua funzione principale è "Gives user notification after a certain maount of time idle.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Idle reminder
Scarica i file di estensione Idle reminder 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mkboaajngkkeoeoamcbcngficggmlloj |
URL Ufficiale | https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj |
Descrizione | Gives user notification after a certain maount of time idle. |
Dimensione del File | 13.32 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-04-07 |
Data di Pubblicazione | 2020-04-07 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | Matthew Perlick |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |