Idle reminder
Gives user notification after a certain maount of time idle.
什麼是Idle reminder?
Idle reminder是由Matthew Perlick開發的Chrome擴展程式,該擴展的主要功能是“Gives user notification after a certain maount of time idle.”。
擴展截圖
下載Idle reminder擴展crx文件
下載Idle reminder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | mkboaajngkkeoeoamcbcngficggmlloj |
官方網址 | https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj |
簡介 | Gives user notification after a certain maount of time idle. |
檔案大小 | 13.32 KB |
安裝次數 | 33 |
目前版本 | 1.0 |
更新時間 | 2020-04-07 |
上架時間 | 2020-04-07 |
評分 | 1.00/5 共 1 次評分 |
開發者 | Matthew Perlick |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |